/* ==========================================================================
   HOJA DE ESTILOS GENERAL - CAROLA MANSILLA WEB
   Diseño: Premium, Elegante, Minimalista y Mobile First
   ========================================================================== */

/* IMPORTACIÓN DE FUENTES DESDE GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
    /* Paleta de Colores Premium */
    --primary-navy: #0B192C;       /* Azul Marino Profundo */
    --accent-gold: #D4AF37;        /* Dorado Elegante */
    --accent-gold-hover: #AA8B2C;  /* Dorado más oscuro para interacciones */
    --text-white: #FFFFFF;
    --text-muted: #E2E8F0;         /* Gris Claro para textos sobre fondo oscuro */
    --bg-light: #F8FAFC;           /* Fondo gris de cortesía para dar ritmo visual */
    
    /* Tipografías */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transiciones Globales */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. RESETEO BÁSICO Y RECEPTIVO
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--primary-navy);
    line-height: 1.6;
}

/* Contenedor Global Adaptable (Ancho máximo controlado) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Componentes de Botones Reutilizables */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}


/* ==========================================================================
   2. NAVBAR & HEADER (Navegación Fija)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--primary-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background-color 0.3s var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-title);
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-gold);
}

/* Hamburguesa Móvil */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: left center;
}

/* Menú Lateral Móvil */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-navy);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    padding: 90px 2rem 2rem 2rem;
    transition: right 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.nav-menu.is-active {
    right: 0;
}

/* Transformación de Hamburguesa a X */
.nav-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    background-color: var(--accent-gold);
}

.nav-toggle.is-active .hamburger-line:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--accent-gold);
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.btn-nav-cta {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.btn-nav-cta:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

/* Navbar para Escritorio */
@media (min-width: 992px) {
    .main-header {
        height: 80px;
        background-color: rgba(11, 25, 44, 0.95);
        backdrop-filter: blur(10px);
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        display: block;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 2.25rem;
    }

    .nav-link {
        font-size: 0.95rem;
        color: var(--text-white);
    }

    .nav-link:hover {
        color: var(--accent-gold);
        padding-left: 0;
    }
    
    .btn-nav-cta {
        width: auto;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        background-color: var(--accent-gold);
        color: var(--primary-navy);
        border: none;
    }

    .btn-nav-cta:hover {
        background-color: var(--accent-gold-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }
}


/* ==========================================================================
   3. SECCIÓN HERO (UNIFICADA - TEXTO + GLASS CARDS RESONSIVE)
   ========================================================================== */
.hero {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 7rem 0 5rem 0; /* Margen superior para respetar la Navbar fija */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Diseño Móvil Base: Fuerza una sola columna vertical */
.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%;
}

/* --- Columna Izquierda: Mensajes y Botones --- */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column; /* Botones apilados en celulares pequeños */
    gap: 1rem;
}

/* --- Columna Derecha: Escenario de las Tarjetas --- */
.hero-cards-side {
    width: 100%;
    display: flex;
    align-items: center;
}

/* Contenedor interno de tarjetas (Móvil: una columna limpia) */
.hero-glass-composition {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

/* Estilo de la Tarjeta Glassmorphism */
.glass-card {
    background: rgba(11, 31, 58, 0.45); 
    backdrop-filter: blur(14px); 
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.07); 
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    will-change: transform;
}

/* Iconos de las tarjetas */
.glass-card-icon {
    width: 38px;
    height: 38px;
    color: #C8A86B; /* Dorado Elegante Premium */
    background: rgba(200, 168, 107, 0.08); 
    border: 1px solid rgba(200, 168, 107, 0.2);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-card-icon svg {
    width: 100%;
    height: 100%;
}

.glass-card-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.glass-card-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #E2E8F0;
    line-height: 1.5;
}

/* Efectos Hover de las tarjetas */
.glass-card:hover {
    background: rgba(255, 255, 255, 0.06); 
    border-color: rgba(200, 168, 107, 0.4); 
    box-shadow: 0 15px 45px -5px rgba(200, 168, 107, 0.12); 
}

/* ==========================================================================
   Ajustes Responsivos Intermedios y Escritorio
   ========================================================================== */

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row; /* Botones en horizontal */
    }
}

/* --- REGLA DE ORO: ESCRITORIO (Fuerza las dos columnas paralelas) --- */
@media (min-width: 992px) {
    .hero {
        padding: 0; /* Centrado vertical automático por flex de la sección */
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr; /* Dos columnas proporcionales exactas */
        gap: 5rem; /* Distancia elegante entre textos y tarjetas */
        align-items: center;
        flex-direction: row; /* Respaldo */
    }

    .hero-content {
        padding-right: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Transformación de la grilla interna del mapa de tarjetas */
    .hero-glass-composition {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.75rem;
        position: relative;
        padding: 2rem 0;
    }

    /* Keyframes de animación sutil de flotación */
    @keyframes glassFloatAlpha {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0px); }
    }

    @keyframes glassFloatBeta {
        0% { transform: translateY(-4px); }
        50% { transform: translateY(4px); }
        100% { transform: translateY(-4px); }
    }

    /* Aplicación de las coordenadas de asimetría flotante */
    .card-displacement-1 {
        transform: translate(-15px, -15px);
        animation: glassFloatAlpha 6s ease-in-out infinite;
    }

    .card-displacement-2 {
        transform: translate(15px, 15px);
        animation: glassFloatBeta 7s ease-in-out infinite;
    }

    .card-displacement-3 {
        transform: translate(-30px, 10px);
        animation: glassFloatBeta 6.5s ease-in-out infinite;
    }

    .card-displacement-4 {
        transform: translate(0px, 35px);
        animation: glassFloatAlpha 7.5s ease-in-out infinite;
    }

    /* Comportamiento hover interactivo en escritorio */
    .glass-card:hover {
        animation-play-state: paused;
        transform: scale(1.03) translateY(-4px) !important;
        z-index: 50;
    }
}

/* ==========================================================================
   4. ESTILOS DE LA SECCIÓN SOBRE CAROLA (Premium Layered Design)
   ========================================================================= */
.about {
    padding: 7.5rem 0;
    background-color: #FFFFFF; /* Fondo blanco impecable */
    color: #4A5568; /* Gris para el cuerpo del texto para legibilidad */
}

.about-container {
    display: flex;
    flex-direction: column; /* Apilado vertical para móviles por defecto */
    gap: 5rem;
}

/* --- Columna de Texto --- */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    font-family: var(--font-body); /* Montserrat asumida */
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.about-title {
    font-family: var(--font-title); /* Playfair Display asumida */
    font-size: 2.75rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.about-quote {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-navy);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0 2.5rem 0;
}

.about-paragraph {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #5A6A80;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-signature {
    font-family: var(--font-signature); /* Asumida o usar font-style: italic con color dorado */
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

/* --- Columna de Foto (Decoración Compleja en Capas) --- */
.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-media-wrapper {
    position: relative; /* Clave para el posicionamiento absoluto de las capas decorativas */
    width: 100%;
    max-width: 480px; /* Ancho máximo controlado para la foto */
}

/* Marco de la Foto en Arco */
.photo-frame {
    position: relative;
    width: 80%; /* Deja espacio para las decoraciones que asoman */
    aspect-ratio: 1 / 1.15; /* Proporción similar a la imagen */
    border-radius: 200px 200px 0 0; /* Forma de arco superior */
    border: 2px solid var(--accent-gold); /* Borde dorado fino */
    overflow: hidden; /* Recorta la fotografía a la forma */
    z-index: 5;
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08); /* Sombra suave para profundidad */
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste perfecto de la foto */
}

/* --- Decoraciones de Fondo (Absolutas) --- */

/* Patrón de Puntos */
.decorator-dots {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--accent-gold) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
}

/* Rama de Hojas Grande */
.decorator-branch-large {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 120px;
    height: 180px;
    background-image: url('assets/images/leaf-pattern.svg'); /* Usar una imagen o SVG */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* --- Decoraciones Superpuestas (Absolutas) --- */

/* Círculo Azul con Hoja */
.decorator-leaf-circle {
    position: absolute;
    top: 50px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(11, 25, 44, 0.15);
}

.leaf-icon {
    width: 100%;
    height: 100%;
    fill: var(--accent-gold); /* Relleno dorado de la hoja */
}

/* Insignia de Formación */
.formation-badge {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background-color: var(--primary-navy);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    z-index: 15;
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.2);
    width: 300px; /* Ancho fijo para la insignia */
}

.badge-icon-box {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-icon {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3px;
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
}

.badge-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 400;
    color: #FFFFFF; /* Texto blanco en la insignia */
}

.badge-border-partial {
    position: absolute;
    bottom: 0;
    left: 2rem;
    width: 40%;
    height: 3px;
    background-color: var(--accent-gold);
}

/* ==========================================================================
   Ajustes Responsivos para Sobre Carola
   ========================================================================= */

@media (min-width: 992px) {
    .about {
        padding: 7.5rem 0;
    }

    .about-container {
        flex-direction: row; /* Diseño de dos columnas paralelo en escritorio */
        align-items: center;
        justify-content: space-between;
    }

    .about-content {
        flex: 0 0 52%; /* Equilibrio de anchos */
    }

    .about-media {
        flex: 0 0 40%;
        justify-content: flex-start; /* Alineación limpia con la grilla */
    }

    .about-title {
        font-size: 2.75rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-image-wrapper {
        max-width: 480px; /* Escalado proporcional para monitores */
    }
}

/* ==========================================================================
   5. SECCIÓN METODOLOGÍA
   ========================================================================== */
.methodology {
    padding: 5rem 0;
    background-color: var(--bg-light);
    color: var(--primary-navy);
}

.methodology-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.methodology-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.methodology-title {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.methodology-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4A5568;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.methodology-card {
    background-color: #FFFFFF;
    padding: 2.25rem 2rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
    border-top: 3px solid transparent;
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 46px;
    height: 46px;
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.08);
    padding: 0.65rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-number {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: rgba(11, 25, 44, 0.15);
    font-weight: 700;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.875rem;
    transition: color 0.3s ease;
}

.card-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #5A6A80;
    line-height: 1.6;
}

/* Efectos Hover de las Tarjetas */
.methodology-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
    border-top-color: var(--accent-gold);
}

.methodology-card:hover .card-icon {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.methodology-card:hover .card-title {
    color: var(--accent-gold-hover);
}

@media (min-width: 640px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .methodology {
        padding: 7.5rem 0;
    }

    .methodology-title {
        font-size: 2.75rem;
    }

    .methodology-grid {
        grid-template-columns: repeat(4, 1fr); /* Fila perfecta de 4 columnas */
        gap: 1.5rem;
    }
    
    .methodology-card {
        padding: 2.5rem 1.75rem;
    }
}


/* ==========================================================================
   6. SECCIÓN SESIONES
   ========================================================================== */
.sessions {
    padding: 5rem 0;
    background-color: #FFFFFF;
    color: var(--primary-navy);
}

.sessions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.sessions-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.sessions-title {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.sessions-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4A5568;
}

.sessions-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.session-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(11, 25, 44, 0.03);
    border: 1px solid rgba(11, 25, 44, 0.05);
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.session-card.highlight-border {
    border-left: 4px solid var(--accent-gold);
}

.session-card-header {
    margin-bottom: 1.25rem;
}

.session-type {
    font-family: var(--font-body);
    color: var(--accent-gold-hover);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.session-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.session-card-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #5A6A80;
    margin-bottom: 1.75rem;
}

/* Caja de dirección física sutil */
.session-location {
    display: flex;
    gap: 0.875rem;
    background-color: #FFFFFF;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.75rem;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.icon-pin {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-text {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.875rem;
    color: #4A5568;
}

.session-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: auto;
}

.session-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.icon-check {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.session-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(11, 25, 44, 0.07);
    background-color: #FFFFFF;
}

/* Bloque Inferior Llamado a la Acción (CTA) */
.sessions-footer-block {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.footer-block-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.footer-block-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 650px;
}

.footer-block-action {
    width: 100%;
}

.footer-block-action .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .sessions-footer-block {
        padding: 3.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-block-content {
        flex: 0 0 65%;
    }

    .footer-block-action {
        width: auto;
    }

    .footer-block-action .btn {
        width: auto;
    }
}

@media (min-width: 992px) {
    .sessions {
        padding: 7.5rem 0;
    }

    .sessions-title {
        font-size: 2.75rem;
    }

    .sessions-grid {
        flex-direction: row; /* Dos columnas paralelas perfectas */
        gap: 2rem;
    }

    .session-card {
        flex: 1;
        padding: 3.5rem 2.5rem;
    }
}


/* ==========================================================================
   7. SECCIÓN PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
    color: var(--primary-navy);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.faq-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.faq-title {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4A5568;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(11, 25, 44, 0.02);
    border: 1px solid rgba(11, 25, 44, 0.04);
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
    padding-right: 1.5rem;
    transition: color 0.3s ease;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--transition-smooth);
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--transition-smooth);
}

/* Colapso Dinámico JS */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-inner p {
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: #5A6A80;
    line-height: 1.6;
}

.faq-trigger:hover .faq-question {
    color: var(--accent-gold-hover);
}

/* Estados de Apertura Interactiva */
.faq-item.is-open {
    box-shadow: 0 10px 25px rgba(11, 25, 44, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.is-open .faq-question {
    color: var(--accent-gold-hover);
}

.faq-item.is-open .faq-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .faq {
        padding: 7.5rem 0;
    }

    .faq-title {
        font-size: 2.75rem;
    }

    .faq-subtitle {
        font-size: 1.05rem;
    }

    .faq-trigger {
        padding: 1.75rem 2rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }

    .faq-answer-inner {
        padding: 0 2rem 1.75rem 2rem;
    }
}


/* ==========================================================================
   8. SECCIÓN CONTACTO Y MAPA BLANCO PREMIUM (Corregido)
   ========================================================================== */
.contact {
    padding: 5rem 0;
    background-color: #FFFFFF;
    color: var(--primary-navy);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-content-side {
    display: flex;
    flex-direction: column;
}

.contact-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Tarjeta Compacta WhatsApp */
.contact-premium-card {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 2rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(11, 25, 44, 0.08);
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
}

.card-badge-gold {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.card-card-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}

.whatsapp-icon-wrapper {
    width: 44px;
    height: 44px;
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.card-action-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 400;
}

.contact-phone-display {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-decoration: none;
}

.btn-contact-cta {
    width: 100%;
    margin-bottom: 0.75rem;
}

.card-action-note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    padding: 0.7rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(11, 25, 44, 0.05);
}

.detail-icon-box svg {
    width: 100%;
    height: 100%;
}

.detail-text-box h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-text-box p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #5A6A80;
    line-height: 1.5;
}

/* --- BLOQUE DE MAPA BLANCO EDITORIAL (Móvil) --- */
.contact-map-side {
    width: 100%;
}

.contact-map-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(11, 25, 44, 0.06);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(11, 25, 44, 0.05);
    transition: transform 0.4s var(--transition-smooth), 
                box-shadow 0.4s var(--transition-smooth);
}

.map-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold-hover);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 1px;
    z-index: 10;
}

.map-card-header {
    padding: 2rem;
    background-color: #FFFFFF;
}

.map-card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.map-card-address {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.875rem;
    color: #5A6A80;
    line-height: 1.5;
}

.map-iframe-wrapper {
    width: 100%;
    height: 380px;
    background-color: var(--bg-light);
    display: block;
}

.contact-iframe-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(11, 25, 44, 0.12);
}

/* --- REFUERZO DE DOS COLUMNAS ABSOLUTAS (Escritorio) --- */
@media (min-width: 992px) {
    .contact-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Divide la sección equitativamente */
        gap: 4rem;
        align-items: start;
    }

    .contact-content-side {
        padding-right: 1rem;
    }

    .contact-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }

    .contact-subtitle {
        font-size: 1.05rem;
    }

    .map-card-header {
        padding: 2.5rem;
    }

    .map-iframe-wrapper {
        height: 440px; /* Equilibrio perfecto de alturas */
    }
}

/* ==========================================================================
   15. ESTILOS DE LA SECCIÓN FOOTER (Mobile First)
   ========================================================================== */
.main-footer {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 4.5rem 0 2rem 0; /* Espaciado amplio premium */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    flex-direction: column; /* Apilado vertical para móviles */
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* --- Estilos Columna 1: Brand --- */
.footer-logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-bio {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 340px; /* Control de desborde de lectura */
}

/* --- Títulos de Columnas 2 y 3 --- */
.footer-column-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
}

/* --- Estilos Columna 2: Navegación --- */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-family: var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-gold);
    transform: translateX(4px); /* Sutil desplazamiento dinámico */
}

/* --- Estilos Columna 3: Redes Sociales --- */
.social-icons-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--transition-smooth);
    text-decoration: none;
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
}

/* Efecto hover sofisticado para iconos */
.social-icon-link:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-navy); /* Invierte el color del SVG interno */
    transform: translateY(-4px); /* Elevación sutil */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

/* --- Línea Separadora --- */
.footer-separator {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 3.5rem 0 1.75rem 0;
}

/* --- Parte Inferior del Footer --- */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-note {
    font-family: var(--font-body);
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE PARA EL FOOTER
   ========================================================================== */

/* Ajustes intermedios para Tablets */
@media (min-width: 640px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en tablets */
        gap: 3rem;
    }
    
    .footer-column.footer-brand {
        grid-column: span 2; /* El branding ocupa el ancho superior completo en tablets */
    }
}

/* Ajustes finales para Escritorio */
@media (min-width: 992px) {
    .main-footer {
        padding: 5.5rem 0 2.5rem 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr; /* Distribución asimétrica premium */
        gap: 2rem;
        align-items: start;
    }

    .footer-column.footer-brand {
        grid-column: span 1; /* Retoma su espacio natural en la primera columna */
    }

    .footer-bottom {
        flex-direction: row; /* Alineación horizontal de créditos */
        justify-content: space-between;
        text-align: left;
    }
}