:root {
    /* Colores exactos de tu identidad */
    --bg-pearl: #FAF9F6;
    --primary-green: #3A5A40; /* El verde oscuro de tus títulos */
    --primary-dark: #2D4632;
    --soft-gold: #B5835A;     /* El dorado de tus etiquetas */
    --accent-sage: #84A59D;
    --text-main: #2D3436;     /* Gris casi negro para lectura */
    --text-muted: #636E72;    /* Gris suave para bajadas */
    
    /* Tipografías */
    --serif: 'Lora', Georgia, serif;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    --luxury-ease: cubic-bezier(0.2, 1, 0.2, 1);
}

/* --- TIPOGRAFÍA GLOBAL --- */

/* La etiqueta pequeña sobre los títulos (ej: "SOBRE MÍ") */
.label {
    font-family: var(--sans);
    color: var(--soft-gold); /* Recuperamos el dorado */
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
    display: block;
}

/* Títulos principales (Hero e Historia) */
h1, h2, .section-title {
    font-family: var(--serif); /* Volvemos a la fuente con serifa */
    color: var(--primary-green); /* Volvemos al verde de marca */
    font-weight: 600;
    line-height: 1.2;
}

.hero-title { font-size: clamp(2.6rem, 7vw, 4.8rem); }
.section-title { font-size: clamp(2.2rem, 4vw, 3rem); }

/* Énfasis dentro de títulos */
h1 strong, h2 em, h1 em , .section-title em {
    color: var(--accent-sage);
    font-style: italic;
    font-weight: 600;
}

/* Párrafos y texto de cuerpo */
p {
    font-family: var(--sans);
    color: var(--text-muted); /* Gris profesional, no negro puro */
    line-height: 1.8;
    font-size: 1.05rem;
}

strong {
    color: var(--text-muted); /* Los negritos resaltan más */
    font-weight: 600;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
body { background: var(--bg-pearl); color: var(--text-main); font-family: var(--sans); overflow-x: hidden; }

/* --- ANIMACIONES DEL HERO (EL IMPACTO INICIAL) --- */

/* Los elementos del Hero comienzan invisibles y desplazados */
#hero .hero-tags, 
#hero .hero-title, 
#hero .hero-description, 
#hero .hero-actions {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Efecto de zoom sutil en la imagen de fondo para dar profundidad */
.hero-bg-img {
    transition: transform 10s ease-out;
}

#hero.active .hero-bg-img {
    transform: scale(1.1);
}

/* Entrada escalonada: primero el tag, luego el título, luego el CTA */
#hero.active .hero-tags { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
#hero.active .hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
#hero.active .hero-description { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
#hero.active .hero-actions { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }


/* --- DINAMISMO DE SCROLL (REVEAL GENERAL) --- */

/* Estado base para todo lo que se revela al hacer scroll */
.section, .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Cuando el Observer añade la clase active */
.section.active, .reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Cascada sutil para las grillas de tarjetas */
.id-card:nth-child(1) { transition-delay: 0.1s; }
.id-card:nth-child(2) { transition-delay: 0.2s; }
.id-card:nth-child(3) { transition-delay: 0.3s; }

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.3s; }
.service-card:nth-child(3) { transition-delay: 0.5s; }

/* Dinamismo interactivo al pasar el mouse */
.id-card:hover, .service-card:hover, .card-metodo:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(58, 90, 64, 0.08);
    transition: all 0.4s ease;
}


/* --- WHATSAPP PILL: MINIMALISTA & CERCANO --- */
.wa-pill {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-green); /* Tu verde bosque profundo */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px; /* Forma de píldora */
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--sans, sans-serif); /* Usamos tu tipografía de cuerpo */
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.wa-pill i {
    font-size: 1.2rem;
}

/* Hover sobrio: solo un cambio de tono técnico */
.wa-pill:hover {
    background-color: var(--primary-dark); 
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .wa-pill {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* --- ESTILOS NAVBAR (UNIFORMIDAD TOTAL) --- */

.navbar {
    position: fixed;
    top: 0; 
    width: 100%;
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.4s var(--luxury-ease);
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(58, 90, 64, 0.05);
    height: 10vh;
}

/* Estado al hacer scroll */
.navbar.scrolled {
    padding: 12px 6%;
    background: rgba(250, 249, 246, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Logo y Texto */
.nav-logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

.nav-tagline {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--soft-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Enlaces de Navegación */
.nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* --- NAV LINK CON LÍNEA ANIMADA --- */

.nav-link {
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted); /* #636E72 definido en tu sistema */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative; /* Necesario para posicionar la línea */
    padding: 4px 0;
    transition: color 0.3s var(--luxury-ease);
    white-space: nowrap;
}

/* La línea (Estado inicial) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Empieza en cero */
    height: 2px;
    background-color: var(--primary-green); /* Tu verde de marca #3A5A40 */
    transition: width 0.3s var(--luxury-ease); /* Animación de crecimiento */
}

/* Hover: El texto cambia de color y la línea crece */
.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%; /* Se expande al 100% del ancho del texto */
}

/* Ajuste específico para el CTA del Navbar */
.nav-cta {
    padding: 10px 22px !important; /* Más compacto para el nav */
    font-size: 0.7rem !important;
    min-width: auto !important;
}

/* Mobile Trigger (Hamburger) */
.menu-trigger {
    display: none; /* Se activa en media queries */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-trigger span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: 0.3s;
}

/* --- RESPONSIVE NAVBAR --- */
@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none; /* Aquí implementarías tu menú lateral o dropdown */
    }
    
    .menu-trigger {
        display: flex;
    }
}

/* --- LÓGICA DE MENÚ MOBILE --- */

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido por defecto */
    width: 100%;
    height: 100vh;
    background: rgba(250, 249, 246, 0.98); /* var(--bg-pearl) */
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s var(--luxury-ease);
    z-index: 1999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.nav-mobile.active {
    right: 0; /* Aparece */
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.nav-mobile-link {
    text-decoration: none;
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animación Hamburguesa a X */
.menu-trigger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mostrar trigger solo en mobile/tablet */
@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none;
    }
    .menu-trigger {
        display: flex;
        z-index: 2001; /* Siempre sobre el menú */
    }
}


.btn-primary {
    background: var(--primary-green);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* HERO - FIX LAYOUT OVERLAP */
#hero {
    position: relative;
    height: 82vh;
    margin-top: 14vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 6%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, var(--bg-pearl) 85%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
}

.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-line { width: 35px; height: 1px; background: var(--soft-gold); }

.hero-tag-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--soft-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.hero-method-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .nav-desktop-links { display: none; }
    .menu-trigger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .menu-trigger span { width: 25px; height: 2px; background: var(--primary-green); }
    .hero-actions { flex-direction: column; gap: 15px; }
}


/* --- SECCIÓN IDENTIDAD: COMPACTA & DINÁMICA --- */

#identidad {
    padding: 120px 6%;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.identity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Más equilibrio de espacio */
    gap: 80px;
    align-items: start;
}

.identity-sticky-intro {
    position: sticky;
    top: 100px;
}

.identity-narrative p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #636E72;
    margin-bottom: 15px;
}

/* Desktop: Lista vertical compacta */
.identity-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- NUEVO ESTILO DE CARDS: SINTONÍA --- */

.id-card {
    background-color: transparent; /* Eliminamos el fondo */
    padding: 24px; /* Espaciado vertical más limpio */
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(45, 52, 54, 0.1); /* Línea divisoria en gris carbón */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.id-card:last-child {
    border-bottom: none; /* Quitamos la línea de la última card */
}

/* Efecto sutil al pasar el mouse */
.id-card:hover {
    border-bottom-color: var(--soft-gold); /* El dorado suave de tu marca */
}

.id-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--soft-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.id-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--primary-green); /* El verde bosque profundo que elegimos */
    margin-bottom: 8px;
}

.id-card p {
    font-size: 1rem;
    color: #636E72;
    line-height: 1.5;
    margin: 0;
}

/* --- MOBILE: CARRUSEL REPARADO Y PROFESIONAL --- */
@media (max-width: 992px) {
    #identidad {
        padding: 80px 0; /* Quitamos padding lateral para que el carrusel llegue al borde */
    }

    .identity-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .identity-sticky-intro {
        position: static;
        text-align: center;
        padding: 0 6%; /* El texto superior sí mantiene margen */
    }

    .identity-cards-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* Padding lateral para que la primera y última card se vean centradas */
        padding: 10px 10% 40px 10%; 
        gap: 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .identity-cards-container::-webkit-scrollbar {
        display: none;
    }

    .id-card {
        /* En mobile, recuperamos el fondo para separar los conceptos */
        background-color: #ffffff; 
        min-width: 80vw; /* Casi todo el ancho de la pantalla */
        max-width: 80vw;
        padding: 40px 30px;
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        scroll-snap-align: center;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Ajuste de texto para mobile */
    .id-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .id-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }
}


/* --- SECCIÓN HISTORIA (REFACTOR MOBILE-FIRST) --- */

.section {
    padding: 80px 6%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipografía y Colores */
.label {
    font-family: var(--sans);
    color: #C17F59; /* Dorado de la marca */
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #3A5A40; /* Verde de la marca */
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}

.story-body p {
    color: #636e72; /* Color solicitado */
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Botón con efecto de salto recuperado */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px) !important; /* Efecto de salto */
    box-shadow: 0 10px 25px rgba(58, 90, 64, 0.2);
}

.story-actions {
    margin-top: 45px; /* Aire entre texto y botón */
}

/* Bloque Visual */
.story-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-halo {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    z-index: 2;
    margin-bottom: -50px;
}

.story-profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.story-card-dark {
    background: #3A5A40;
    color: #ffffff;
    padding: 70px 30px 45px;
    border-radius: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(58, 90, 64, 0.15);
    text-align: center; /* Centrado por defecto para mobile */
}

.story-card-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Subtítulo con el mismo color que los valores */
.story-card-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 35px;
    font-family: var(--sans);
}

.cert-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.cert-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 300px;
}

.cert-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #84a59d; /* Verde salvia */
    font-weight: 800;
}

.cert-value {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8); /* Mismo color que subtítulo */
    line-height: 1.4;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separador sutil para mobile */
}

/* ==========================================
   OPTIMIZACIÓN MOBILE & DESKTOP
   ========================================== */

@media (max-width: 899px) {
    .story-grid {
        text-align: center; /* Centramos toda la narrativa en móvil */
    }

    .story-body p {
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    .story-actions {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 900px) {
    .section {
        padding: 110px 6%;
    }

    .story-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        text-align: left;
    }

    .story-visual {
        align-items: flex-end;
    }

    .profile-halo {
        width: 220px;
        height: 220px;
        margin-right: 120px;
        margin-bottom: -60px;
    }

    .story-profile-img {
        width: 200px;
        height: 200px;
    }

    .story-card-dark {
        text-align: left;
        padding: 80px 45px 50px;
    }

    .cert-group {
        align-items: flex-start;
    }

    .cert-item {
        max-width: none;
    }

    .cert-value {
        border-top: none;
        padding-top: 0;
        padding-left: 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
}


/* ----------------------------------------------------------------------------- */

/* --- ESPECÍFICOS: MI DIFERENCIAL --- */

#diferencial {
    background-color: var(--bg-pearl);
    border-radius: 40px;
    overflow: hidden;
}

.diferencial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta Blanca */
.diferencial-card-white {
    position: relative;
    padding: 40px 25px;
    border-radius: 30px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diferencial-bg-img {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    z-index: 0;
}

.diferencial-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diferencial-content {
    position: relative;
    z-index: 1;
}

.diferencial-highlight {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* Tarjeta Verde */
.diferencial-card-green {
    background: linear-gradient(165deg, #3a5a40 0%, #2f4d36 100%);
    color: white;
    padding: 40px 25px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(58, 90, 64, 0.15);
}

.diferencial-card-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: white;
}

.diferencial-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferencial-item {
    padding-bottom: 20px;
}

.diferencial-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-tag {
    color: #84A59D; /* Verde salvia */
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.item-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

/* ==========================================
   OPTIMIZACIÓN MOBILE & DESKTOP (900px+)
   ========================================== */

@media (max-width: 899px) {
    .diferencial-card-white, .diferencial-card-green {
        text-align: center;
    }
    
    .body-text {
        margin: 0 auto;
    }
}

@media (min-width: 900px) {
    .diferencial-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }

    .diferencial-card-white {
        padding: 60px;
        border-radius: 40px;
        text-align: left;
    }

    .diferencial-card-green {
        padding: 50px;
        text-align: left;
    }
}

/* --- SECCIÓN ENFOQUE (UNIFORMIDAD TOTAL) --- */

#enfoque {
    background-color: #ffffff;
    padding: 100px 6%;
}

.enfoque-header {
    margin-bottom: 70px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.enfoque-description {
    max-width: 700px;
    margin-top: 25px;
    color: #636e72; /* Color solicitado */
}

/* Grilla de Metodología */
.enfoque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta de Método */
.card-metodo {
    background: var(--bg-pearl);
    padding: 45px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: all 0.4s var(--luxury-ease);
}

/* Efecto de salto en hover */
.card-metodo:hover {
    border-color: rgba(184, 146, 106, 0.3);
    background-color: #fcfbf9;
    transform: translateY(-8px); /* Salto de feedback visual */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.item-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B5835A; /* Dorado recuperado */
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.card-title-serif {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: #3A5A40; /* Verde recuperado */
    margin-bottom: 18px;
    font-weight: 600;
}

.card-text {
    color: #636e72; /* Color solicitado */
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* Nota al pie de la tarjeta */
.card-footer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 146, 106, 0.2);
    font-weight: 700;
    color: #3A5A40;
    font-size: 0.85rem;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   OPTIMIZACIÓN MOBILE (900px-)
   ========================================== */

@media (max-width: 899px) {
    #enfoque {
        padding: 80px 5%;
        text-align: center; /* Centrado total para mobile */
    }

    .enfoque-description {
        margin-left: auto;
        margin-right: auto;
    }

    .card-metodo {
        padding: 35px 25px;
    }

    .card-footer-note {
        text-align: center;
    }
}

/* --- SECCIÓN PASOS (ESTRUCTURA UNIFORME CON LÍNEA) --- */

#pasos {
    background-color: #ffffff;
    padding: 110px 6%;
    overflow: hidden;
}

.roadmap-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 100px; /* Espacio para que el diseño respire */
}

/* Contenedor de la línea */
.roadmap-steps {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* La Línea (Dorado sutil #B5835A) */
.roadmap-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #B5835A;
    opacity: 0.3;
    z-index: 1;
}

.roadmap-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Punto de conexión (Verde #3A5A40) */
.item-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #3A5A40;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #ffffff, 0 0 0 6px rgba(181, 131, 90, 0.2);
    z-index: 3;
}

/* Tipografía de los Pasos */
.item-step-tag {
    font-family: var(--sans);
    font-size: 0.72rem;
    color: #B5835A;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.item-step-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: #3A5A40;
    margin-bottom: 15px;
    font-weight: 600;
}

.body-text {
    color: #636e72 !important; /* Color solicitado */
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================
   CONFIGURACIÓN MOBILE (Línea a la Izquierda)
   ========================================== */

@media (max-width: 899px) {
    #pasos {
        padding: 80px 5%;
    }

    .roadmap-header {
        margin-bottom: 60px;
    }

    /* Línea a la izquierda en mobile */
    .roadmap-steps::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100% !important;
        padding-left: 55px; /* Espacio para que el texto no toque la línea */
        text-align: left !important;
    }

    .item-dot {
        left: 13.5px; /* Centrado sobre la línea de 20px */
        top: 6px;
    }

    .item-step-title {
        font-size: 1.6rem;
    }
}

/* ==========================================
   CONFIGURACIÓN DESKTOP (Línea Central)
   ========================================== */

@media (min-width: 900px) {
    .roadmap-steps::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .roadmap-item {
        width: 50%;
    }

    /* Alternado Zig-Zag */
    .roadmap-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 80px;
        text-align: right;
    }

    .roadmap-item:nth-child(odd) .item-dot {
        right: -7px;
    }

    .roadmap-item:nth-child(even) {
        align-self: flex-end;
        padding-left: 80px;
        text-align: left;
    }

    .roadmap-item:nth-child(even) .item-dot {
        left: -7px;
    }

    .roadmap-item:nth-child(even) .body-text {
        margin-left: 0;
    }
    
    .roadmap-item:nth-child(odd) .body-text {
        margin-left: auto;
    }
}

/* --- SECCIÓN SERVICIOS (PROGRAMAS Y BOTONES UNIFICADOS) --- */

#servicios {
    background-color: #ffffff;
    padding: 120px 6%;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
/* --- SERVICIOS: ESTILO ORIGINAL KAREN MARTINEZ --- */

.service-card {
    background-color: #FDFCF9;
    padding: 50px 40px; /* Recuperamos el aire original */
    border-radius: 40px; /* Bordes redondeados originales */
    border: 1px solid rgba(181, 131, 90, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

/* El número sutil igual que en tu sección de Identidad */
.id-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #B5835A;
    margin-bottom: 10px;
    display: block;
}


.service-card-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.service-sessions {
    font-size: 0.75rem;
    color: #B5835A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #636E72;
}

/* Highlight: Borde destacado y elevación para el plan de 8 sesiones */
.service-card.highlight {
    background-color: #ffffff;
    border: 1.5px solid var(--primary-dark);
    box-shadow: 0 20px 40px rgba(58, 90, 64, 0.05);
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green); /* Badge en carbón para contraste */
    color: white;
    padding: 4px 15px;
    font-size: 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- ESTILO DE BOTONES UNIFICADO --- */
.service-footer {
    margin-top: 35px;
}

.btn-primary, .btn-outline {
    display: inline-block;
    /* width: 100%; */
    text-align: center;
    padding: 16px 20px;
    border-radius: 50px;
    font-family: var(--sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s var(--luxury-ease);
}

.btn-primary {
    background: #3A5A40;
    color: #ffffff !important;
    border: 2px solid #3A5A40;
}

@media (max-width: 899px) {
    .btn-primary {
width: 100%;
    }
}

.btn-outline {
    background: transparent;
    color: #3A5A40 !important;
    border: 2px solid #3A5A40;
}

.btn-primary:hover, .btn-outline:hover {
    transform: translateY(-5px); /* Efecto de salto */
    box-shadow: 0 10px 20px rgba(58, 90, 64, 0.15);
}

.btn-outline:hover {
    background: #3A5A40;
    color: #ffffff !important;
}

/* --- FEATURES --- */
.features-divider {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(181, 131, 90, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.feature-title {
    font-family: var(--serif);
    color: #3A5A40;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.92rem;
    color: #636e72;
    line-height: 1.6;
}

/* --- OPTIMIZACIÓN MOBILE --- */
@media (max-width: 899px) {
    #servicios { padding: 80px 5%; }
    .service-card { text-align: center; padding: 40px 25px; }
    .features-grid { text-align: center; gap: 30px; }
    .service-card.highlight { margin: 20px 0; transform: none; }
}

/* --- SECCIÓN SINTONÍA (ESTRUCTURA Y UNIFORMIDAD) --- */

#sintonia {
    background-color: var(--bg-pearl);
    padding: 110px 6%;
}

.sintonia-grid {
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px; 
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lista de puntos a la izquierda */
.sintonia-list {
    display: flex; 
    flex-direction: column; 
    gap: 25px;
}

.sintonia-prompt {
    color: #636e72;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sintonia-item {
    display: flex; 
    gap: 15px; 
    align-items: flex-start;
}

.item-arrow {
    color: #B5835A; /* Dorado de marca */
    font-weight: 800;
    margin-top: 2px;
}

/* Tarjeta de compromiso blanca */
.sintonia-card {
    background: #ffffff; 
    padding: 60px; 
    border-radius: 40px; 
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.card-title-serif {
    font-family: var(--serif);
    color: #3A5A40; /* Verde de marca */
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.sintonia-card .body-text {
    margin-bottom: 25px;
}

/* Bloque de Perfil / Firma */
.sintonia-profile {
    display: flex; 
    align-items: center; 
    gap: 20px; 
    border-top: 1px solid #eee; 
    padding-top: 30px;
    margin-top: 15px;
}

.profile-thumb {
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover;
}

.profile-name {
    font-weight: 700; 
    color: #3A5A40; 
    margin: 0; 
    font-size: 1.1rem;
}

.profile-tag {
    font-size: 0.75rem; 
    color: #B5835A; 
    text-transform: uppercase; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    margin: 0;
}

/* ==========================================
   OPTIMIZACIÓN RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .sintonia-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    #sintonia {
        padding: 80px 5%;
    }
}

@media (max-width: 768px) {
    .sintonia-intro {
        text-align: center;
    }

    .sintonia-item {
        text-align: left;
    }

    .sintonia-card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .card-title-serif {
        font-size: 1.6rem;
        text-align: center;
    }

    .sintonia-profile {
        justify-content: center;
        text-align: left;
    }
}

/* --- SECCIÓN FAQ (ESTRUCTURA FINAL Y UNIFORME) --- */

/* --- SECCIÓN FAQ: UNIFICADA --- */

#faq {
    background-color: #ffffff; 
    padding: 120px 6%; /* Tu estándar de sección */
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

/* El "plan real" o "próximo paso" en dorado de marca */
.highlight-gold {
    color: var(--soft-gold); /* #B5835A */
    font-weight: 700;
}

.faq-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 100px; /* Mayor espacio entre columnas para legibilidad */
    max-width: 1200px; /* Tu estándar de ancho */
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .faq-wrapper-grid {
        grid-template-columns: 1fr 1fr;
    }
}

details {
    border-bottom: 1px solid rgba(58, 90, 64, 0.1); /* Verde suave para la línea */
    padding: 30px 0;
    cursor: pointer;
}

summary {
    font-family: var(--serif); /* Tu tipografía principal */
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    list-style: none;
    outline: none;
    transition: color 0.3s ease;
}

summary::-webkit-details-marker { display: none; }

details:hover summary {
    color: var(--soft-gold);
}

.plus-icon {
    color: var(--soft-gold);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] summary {
    color: var(--soft-gold);
    margin-bottom: 20px;
}

details[open] .plus-icon {
    transform: rotate(45deg);
}

.faq-content {
    color: var(--text-muted); /* #636E72 */
    line-height: 1.8;
    font-size: 1rem;
    max-width: 90%;
    animation: faqFade 0.5s ease-out;
}

@keyframes faqFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    #faq { padding: 80px 6%; }
    .faq-header { margin-bottom: 50px; }
    .faq-header .section-title { font-size: 2.2rem; }
    summary { font-size: 1.05rem; }
}


/* Propuesta de Valor */
/* --- CONTACTO: NORMALIZACIÓN TOTAL --- */

#contacto {
    /* Padding estandarizado para todas tus secciones */
    padding: 120px 6%; 
    background-color: #FDFCF9; /* var(--bg-pearl) */
}

.contact-final-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; 
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Propuesta de Valor y Títulos */
.contact-content-box .section-title {
    margin-bottom: 25px;
    color: var(--primary-green); /* #3A5A40 */
}

/* Tratamiento específico para el highlight de marca */
.highlight-gold {
    color: var(--soft-gold); /* #B5835A */
    font-weight: 700;
}

.contact-content-box .body-text {
    font-size: 1.1rem;
    color: var(--text-muted); /* #636E72 */
    margin-bottom: 35px;
    line-height: 1.7;
}

.method-steps-list {
    list-style: none;
    padding: 0;
}

.method-steps-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
}

.method-steps-list i {
    color: var(--soft-gold);
    font-size: 0.85rem;
}

/* Tarjeta de Acción: Diseño Minimalista */
.contact-action-card-clean {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 40px;
    text-align: center;
    /* Sombra integrada al sistema visual */
    box-shadow: 0 20px 50px rgba(58, 90, 64, 0.04);
    border: 1px solid rgba(58, 90, 64, 0.02);
}

.avatar-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-headline {
    font-family: var(--serif); /* Lora */
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.card-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.availability-info {
    display: block;
    margin-top: 25px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-final-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    /* Centramos la lista pero mantenemos los checks alineados a la izquierda */
    .method-steps-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
}

/* --- FOOTER FINAL: FIX VISIBILIDAD --- */

.main-footer {
    background-color: #FDFCF9;
    padding: 100px 6% 40px;
    border-top: 1px solid rgba(58, 90, 64, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--serif);
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-bio {
    font-size: 0.95rem;
    color: var(--text-muted); /* #636E72 */
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* REDES SOCIALES: Iconos Verdes Visibles */
.footer-social-links {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.social-icon {
    color: var(--primary-green); /* Verde #3A5A40 */
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--soft-gold); /* Dorado #B5835A al pasar el mouse */
    transform: translateY(-3px);
}

/* Etiquetas y Navegación */
.footer-label {
    color: var(--soft-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li { margin-bottom: 12px; }

.footer-nav a {
    text-decoration: none;
    color: var(--primary-green);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--soft-gold); }

/* Contacto y Gmail */
.contact-details {
    margin-bottom: 25px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.contact-link i { color: var(--soft-gold); } /* Icono de sobre en dorado */

.contact-link:hover { color: var(--soft-gold); }

.contact-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-motto {
    font-family: var(--serif);
    color: var(--primary-green);
    font-style: italic;
    opacity: 0.8;
    font-size: 1rem;
}

/* Barra Inferior */
.footer-bottom {
    margin-top: 80px;
    padding-top: 25px;
    border-top: 1px solid rgba(58, 90, 64, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy, .footer-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* --- OPTIMIZACIÓN MOBILE FOOTER --- */

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 8% 30px; /* Reducimos padding superior */
        text-align: center; /* Centramos todo el texto por defecto */
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Forzamos una sola columna */
        gap: 50px; /* Espacio generoso entre bloques */
    }

    .footer-bio {
        margin: 0 auto 25px; /* Centramos la biografía */
    }

    .footer-social-links {
        justify-content: center; /* Centramos los iconos de redes */
    }

    .footer-nav {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centramos los links de navegación */
    }

    .contact-link, .contact-text {
        justify-content: center; /* Centramos el mail y la ubicación */
    }

    .footer-bottom {
        flex-direction: column; /* Stack vertical para la barra final */
        gap: 15px;
        margin-top: 50px;
        text-align: center;
    }
}