
/* =========================
   LAYOUT GENERAL
========================= */

.layout {
    height: 100vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

/* =========================
   PRESENTACIÓN (2/3)
========================= */

.principal {
    padding: 1rem;
    display: flex;
}

.presentacion {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    align-items: start;
}

/* SALUDO (25% aprox del bloque) */
.saludo {
    padding: 1rem;
	font-family: var(--fuente-bienvenida);
	font-size: 1.5rem;
}

/* FIGURA (foto 2/3 del área visual disponible) */
.perfil {
	margin-left: 20%;
    width: 15rem;
    height: 15rem;
}

.perfil img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* MENSAJE */
.mensaje-bienvenida {
    justify-self: end;
    max-width: 70%;
    text-align: right;
	font-size: clamp(0.8rem, 2.5vmin, 2rem);
	text-shadow: 3px 3px 10px rgba(0,0,0,0.7);	
}

.mensaje-bienvenida p {
		margin-bottom: 1.5rem;
}

/* FIRMA */
.firma {
    justify-self: end;
    text-align: right;
    margin-top: 1rem;
    opacity: 0.8;
	font-size: clamp(0.8rem, 2.5vmin, 2rem);
}

/* BOTÓN (1/4 inferior aprox) */
.boton-entrada {
    justify-self: end;
    margin-top: 2rem;
    padding: 0.6rem 1rem;
    border: 1px solid #fff3;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    width: fit-content;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


/* =========================
   TARJETAS (1/3)
========================= */

.tarjetas {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tarjeta-interactiva {
    width: 70%;
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
	background-color: var(--color-nav);
	border-radius: 1rem;
	box-shadow: 7px 7px 10px rgba(0,0,0,0.7);
	padding: clamp(1rem, 2vmin, 2rem);	
}

/* Icono dinámico dentro de la tarjeta interactiva */
.icono-dinamico {
	color: var(--color-nav-hover);
	font-size: clamp(2.5rem, 2vmin,3.5rem);
	flex-shrink: 0;
	display: flex;
	align-items: center;  /* centrar verticalmente dentro de su caja */
	justify-content: center; /* centrar horizontalmente si hay espacio */
}

/* Ajuste de contenido dinámico */
.contenido-dinamico h2 {
  /*font-size: clamp(1.2rem, 2.5vw, 2rem);*/
  margin-bottom: 0.5rem;
  	font-family: var(--fuente-h2);
}

.contenido-dinamico p {
	/*font-size: clamp(0.9rem, 1.5vw, 1.2rem);*/
	font-family: var(--fuente-base);
}
