/* ==========================================================================
   Lic. Antonella Lauria — Landing Psicología
   Estética: editorial cálida (teal profundo + crema + arena) · scrollytelling
   Referencias: Elegant Themes (Psychology & Jewelry Artist) · paulareypsicologia
   Fuentes: Prata (display) · DM Serif Text (headings) · Open Sans (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Nueva Paleta Elegante */
    --color-bg: #FCFCF9;       /* Fondo color crema/blanco roto */
    --color-text: #1a1a1a;     /* Texto principal oscuro */
    --color-green: #4D6A4E;    /* Verde boscoso elegante */
    --color-green-hover: #3b523c;
    --color-gray: #555555;     /* Gris para subtítulos */
    
    /* Variables de compatibilidad */
    --color-teal-dark: #4D6A4E;
    --color-teal-deep: #3b523c;
    --color-teal-mid: #4D6A4E;
    --color-teal-light: #658466;
    --color-cream-bg: #FCFCF9;
    --color-cream-light: #ffffff;
    --color-cream-card: #F6F6F2;
    --color-sand: #e6dcc8;
    --color-clay: #4D6A4E;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #555555;
    --color-text-light: #FCFCF9;
    --color-accent-gold: #c6a355;
    --color-accent-sage: #88a499;
    --color-yes: #4D6A4E;
    --color-no: #b06a5c;

    /* Fuentes */
    --font-title: 'Playfair Display', serif;
    --font-h1: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espaciado, radios y transiciones */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 40px -10px rgba(77, 106, 78, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(77, 106, 78, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(77, 106, 78, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    background-color: var(--color-cream-bg);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-teal-dark);
}
h1 {
    font-family: var(--font-h1);
    font-size: clamp(2.1rem, 4.2vw + 0.6rem, 3.7rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
}
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.9rem); }

p { margin-bottom: 1rem; font-size: 1.06rem; color: var(--color-text-muted); }

/* Eyebrow / badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    background: rgba(22, 78, 78, 0.07);
    color: var(--color-teal-dark);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid rgba(22, 78, 78, 0.14);
}
.badge-light {
    background: rgba(247, 246, 243, 0.14);
    color: var(--color-cream-light);
    border-color: rgba(247, 246, 243, 0.22);
}
.badge-dot {
    width: 8px; height: 8px;
    background-color: var(--color-clay);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(185, 139, 106, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 9px rgba(185, 139, 106, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(185, 139, 106, 0); }
}

/* Layout */
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container.narrow { max-width: 820px; }

/* Secciones de alto completo: llenan la pantalla y centran el contenido.
   Si el contenido es más alto que el viewport, la sección crece (nunca recorta texto). */
.section {
    position: relative;
    padding: 96px 0;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Offset para que el header fijo no tape el inicio de cada sección al navegar */
section[id] { scroll-margin-top: 72px; }

@media (max-width: 768px) {
    .section { padding: 72px 0; }
}
@media (max-height: 720px) {
    /* En pantallas bajas, priorizamos legibilidad sobre alto fijo */
    .section { min-height: auto; }
}

.section-header { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-header .badge { margin-bottom: 18px; }
.section-header h2 { margin-bottom: 14px; }
.section-header.align-left { text-align: left; margin-left: 0; margin-right: 0; }

/* ==========================================================================
   Botones
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 34px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    line-height: 1.3;
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-nav { padding: 10px 22px; font-size: 0.9rem; }

.btn-primary {
    background-color: var(--color-teal-dark);
    color: var(--color-cream-light);
    box-shadow: 0 10px 26px -8px rgba(22, 78, 78, 0.4);
}
.btn-primary:hover {
    background-color: var(--color-teal-deep);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px -8px rgba(22, 78, 78, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-teal-dark);
    border: 1.5px solid rgba(22, 78, 78, 0.4);
}
.btn-outline:hover {
    background-color: var(--color-teal-dark);
    color: var(--color-cream-light);
    border-color: var(--color-teal-dark);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px -8px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Intro / cortina de carga (praxis4-style)
   ========================================================================== */
.intro { display: none; }
.anim-ready .intro {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--color-cream-bg);
    align-items: center;
    justify-content: center;
}
.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.intro-mono {
    font-family: var(--font-h1);
    font-size: 2.2rem;
    color: var(--color-teal-dark);
    letter-spacing: 0.04em;
    opacity: 0;
}
.intro-name {
    font-family: var(--font-h1);
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    color: var(--color-teal-dark);
    letter-spacing: 0.01em;
    opacity: 0;
}
.intro-line {
    display: block;
    width: min(360px, 60vw);
    height: 2px;
    background: rgba(22, 78, 78, 0.15);
    overflow: hidden;
    margin: 4px 0;
}
.intro-line-fill {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--color-teal-dark), var(--color-clay));
}
.intro-role {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--color-text-muted);
    opacity: 0;
}

/* Bloqueo de scroll durante intro/menu */
html.no-scroll, html.no-scroll body { overflow: hidden; height: 100%; }

/* Grano de película sutil */
.grain {
    position: fixed;
    inset: 0;
    z-index: 2500;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* Ocultar headings partidos antes del reveal (solo si hay animación) */
.anim-ready .hero-title,
.anim-ready .section-header > h2,
.anim-ready .footer-cta-title { opacity: 0; }

/* ==========================================================================
   Línea de tiempo de lectura (borde inferior)
   ========================================================================== */
.reading-line {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: rgba(22, 78, 78, 0.1);
    z-index: 1200;
    pointer-events: none;
}
.reading-line-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-teal-dark), var(--color-clay));
}

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
    background: var(--color-teal-deep);
    color: rgba(247, 246, 243, 0.9);
    font-size: 0.82rem;
    position: relative;
    z-index: 1001;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 9px;
    padding-bottom: 9px;
}
.topbar-text { letter-spacing: 0.01em; }
.topbar-text strong { color: #fff; font-weight: 600; }
.topbar-dot { color: var(--color-accent-gold); margin: 0 6px; }
.topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all var(--transition-fast);
}
.topbar-wa:hover { background: #25d366; border-color: #25d366; }
.topbar-wa i { color: #25d366; }
.topbar-wa:hover i { color: #fff; }
@media (max-width: 768px) {
    .topbar-text .topbar-dot + span,
    .topbar-text { font-size: 0.72rem; }
    .topbar-text br { display: none; }
    .topbar-wa { padding: 5px 11px; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.header.scrolled {
    padding: 11px 0;
    background: rgba(252, 252, 249, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(22, 78, 78, 0.08);
    box-shadow: var(--shadow-soft);
}
/* Header container siempre al 90% de ancho en todas las pantallas */
.nav-container {
    width: 90% !important;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo al inicio en blanco (desktop y mobile); verde brand en scroll sticky */
.header:not(.scrolled) .logo-name { color: #ffffff !important; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.header:not(.scrolled) .logo-sub { color: rgba(255, 255, 255, 0.9) !important; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.header:not(.scrolled) .logo-badge { color: #ffffff !important; border-color: rgba(255, 255, 255, 0.85) !important; }

.header.scrolled .logo-name { color: var(--color-teal-dark) !important; text-shadow: none; }
.header.scrolled .logo-sub { color: var(--color-text-muted) !important; text-shadow: none; }
.header.scrolled .logo-badge { color: var(--color-teal-dark) !important; border-color: var(--color-teal-dark) !important; }

/* Desktop: Hamburguesa siempre verde brand color */
@media (min-width: 993px) {
    .menu-toggle { color: var(--color-teal-dark) !important; }
    .menu-toggle-icon span { background: var(--color-teal-dark) !important; }
}

/* Mobile: Hamburguesa blanca al inicio, verde en scroll sticky */
@media (max-width: 992px) {
    .header:not(.scrolled) .menu-toggle { color: #ffffff !important; }
    .header:not(.scrolled) .menu-toggle-icon span { background: #ffffff !important; }

    .header.scrolled .menu-toggle { color: var(--color-teal-dark) !important; }
    .header.scrolled .menu-toggle-icon span { background: var(--color-teal-dark) !important; }
}
.logo { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-h1);
    font-size: 1.4rem;
    color: var(--color-teal-dark);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.logo-sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
    font-weight: 600;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.nav-link { font-size: 0.93rem; font-weight: 500; color: var(--color-text-dark); position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background-color: var(--color-clay);
    transition: width var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Inicio (header transparente sobre el hero): links en verde brand, sin sombra */
.header:not(.scrolled) .nav-link { color: var(--color-teal-dark); text-shadow: none; }
.header:not(.scrolled) .nav-link::after { background-color: var(--color-clay); }
.header.scrolled .nav-link { color: var(--color-text-dark); text-shadow: none; }

/* Desktop al inicio: se ve el menú inline; la hamburguesa aparece recién al scrollear.
   Al hacer scroll vuelve el comportamiento actual (WhatsApp + hamburguesa). */
@media (min-width: 1101px) {
    .header:not(.scrolled) .menu-toggle { display: none !important; }
}

.nav-right { display: flex; align-items: center; gap: 18px; }

/* Botón "Menú" (praxis4-style) */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    letter-spacing: 0.02em;
    padding: 6px 4px;
}
.menu-toggle-icon {
    position: relative;
    width: 22px; height: 12px;
    display: inline-block;
}
.menu-toggle-icon span {
    position: absolute;
    left: 0; right: 0;
    height: 1.8px;
    background: var(--color-teal-dark);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.menu-toggle-icon span:nth-child(1) { top: 2px; }
.menu-toggle-icon span:nth-child(2) { bottom: 2px; }
.menu-open .menu-toggle-icon span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle-icon span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Colapso al hacer scroll: se oculta la nav inline y aparece "Menú" */
.header.scrolled .nav-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    position: absolute;
}
.header.scrolled .menu-toggle { display: inline-flex; }

/* ==========================================================================
   Panel lateral de menú
   ========================================================================== */
.menu-scrim {
    position: fixed;
    inset: 0;
    background: rgba(14, 52, 52, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    z-index: 1400;
    transition: opacity var(--transition-fast);
}
.menu-open .menu-scrim { opacity: 1; pointer-events: auto; }

.menu-panel {
    position: fixed;
    top: 0; right: 0;
    width: min(440px, 88vw);
    height: 100%;
    background: var(--color-cream-light);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    padding: 40px 44px;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px -20px rgba(14, 52, 52, 0.35);
    overflow-y: auto;
}
.menu-open .menu-panel { transform: translateX(0); }

.menu-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.menu-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    font-weight: 600;
}
.menu-close {
    background: none; border: none;
    font-size: 1.8rem; line-height: 1;
    color: var(--color-teal-dark);
    cursor: pointer;
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: background var(--transition-fast);
}
.menu-close:hover { background: rgba(22, 78, 78, 0.08); }

.menu-nav { display: flex; flex-direction: column; gap: 4px; }
.menu-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-h1);
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    color: var(--color-teal-dark);
    line-height: 1.2;
    padding: 12px 0;
    position: relative;
    border-bottom: 1px solid rgba(22, 78, 78, 0.08);
}
.menu-link > span { display: inline-block; transition: transform var(--transition-fast), color var(--transition-fast); }
.menu-link:hover > span { transform: translateX(12px); color: var(--color-clay); }
.menu-link-note {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.82rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast), color var(--transition-fast);
}
.menu-link:hover .menu-link-note { transform: translateX(12px); color: var(--color-clay); }
.menu-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 0; height: 2px;
    background: var(--color-clay);
    transition: width var(--transition-fast);
}
.menu-link:hover::after { width: 34px; }

/* Grupo "Conocer más" con sub-navegación */
.menu-group { display: flex; flex-direction: column; }
.menu-group .menu-link { border-bottom: none; padding-bottom: 6px; }
.menu-sublinks {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0 12px 2px;
    border-bottom: 1px solid rgba(22, 78, 78, 0.08);
}
.menu-sublink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--color-text-muted);
    padding: 5px 0;
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.menu-sublink::before {
    content: '';
    width: 14px; height: 1px;
    background: rgba(22, 78, 78, 0.35);
    transition: width var(--transition-fast), background var(--transition-fast);
}
.menu-sublink:hover { color: var(--color-clay); transform: translateX(6px); }
.menu-sublink:hover::before { width: 22px; background: var(--color-clay); }

.menu-panel-foot {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(22, 78, 78, 0.12);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.menu-contact { display: flex; flex-direction: column; gap: 8px; }
.menu-contact .menu-eyebrow { margin-bottom: 4px; }
.menu-contact-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.95rem; font-weight: 600;
    color: var(--color-teal-dark);
}
.menu-contact-link i { color: #25d366; }
.menu-contact-line { font-size: 0.9rem; color: var(--color-text-muted); }
.menu-mono {
    font-family: var(--font-h1);
    font-size: 1.8rem;
    color: var(--color-clay);
    letter-spacing: 0.04em;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(1200px 600px at 80% -5%, #fbf6ec 0%, var(--color-cream-bg) 55%);
    overflow: hidden;
}
@media (max-height: 720px) { .hero { min-height: auto; } }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.hero-orb--1 {
    width: 380px; height: 380px;
    top: -80px; left: -120px;
    background: radial-gradient(circle, rgba(136,164,153,0.6), transparent 70%);
}
.hero-orb--2 {
    width: 300px; height: 300px;
    bottom: -60px; right: 8%;
    background: radial-gradient(circle, rgba(198,163,85,0.4), transparent 70%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-title { margin: 22px 0 22px; max-width: 15ch; }
.hero-lead {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}
.hero-lead-strong { color: var(--color-teal-dark); font-style: italic; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note {
    font-size: 1.02rem;
    color: var(--color-text-muted);
    max-width: 52ch;
    border-left: 3px solid var(--color-clay);
    padding-left: 18px;
    margin-bottom: 0;
}
.hero-note strong { color: var(--color-teal-dark); }

.hero-visual { position: relative; }
.hero-img-arch {
    position: relative;
    border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--color-cream-light);
    will-change: transform;
}
.hero-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}
.hero-img-arch:hover .hero-img { transform: scale(1.04); }

.floating-pill {
    position: absolute;
    bottom: 28px; left: -22px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(22, 78, 78, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.floating-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(185, 139, 106, 0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-clay);
    font-size: 1.1rem;
}
.floating-text-title { font-weight: 700; font-size: 0.95rem; color: var(--color-teal-dark); }
.floating-text-sub { font-size: 0.8rem; color: var(--color-text-muted); }

/* ==========================================================================
   Voluntad (scrollytelling narrative)
   ========================================================================== */
.voluntad-section {
    background: var(--color-cream-light);
    border-top: 1px solid rgba(22, 78, 78, 0.06);
    border-bottom: 1px solid rgba(22, 78, 78, 0.06);
}
.voluntad-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.voluntad-text p {
    font-size: 1.12rem;
    color: var(--color-text-dark);
    margin-bottom: 18px;
}
.voluntad-text p:last-child {
    font-family: var(--font-heading);
    color: var(--color-teal-dark);
    font-size: 1.2rem;
}
.selftalk { display: flex; flex-direction: column; gap: 14px; }
.selftalk-chip {
    background: #fff;
    border: 1px solid rgba(22, 78, 78, 0.1);
    border-left: 3px solid var(--color-clay);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.08rem;
    color: var(--color-teal-dark);
    box-shadow: var(--shadow-soft);
}
.selftalk-chip:nth-child(even) { margin-left: 26px; }

.voluntad-flow {
    max-width: 640px;
    margin: 64px auto 0;
    text-align: center;
}
.voluntad-flow p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}
.voluntad-flow .flow-soft { color: var(--color-text-dark); }
.voluntad-flow .flow-strong {
    font-family: var(--font-h1);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--color-teal-dark);
    margin: 8px 0 18px;
    line-height: 1.2;
}

/* ==========================================================================
   Sostener sin ayuda / prose sections
   ========================================================================== */
.sostener-section { background: var(--color-cream-bg); }
.prose p { font-size: 1.1rem; line-height: 1.85; margin-bottom: 18px; color: var(--color-text-muted); }
.prose p strong { color: var(--color-teal-dark); }
.narrow .prose { text-align: center; }
.narrow .prose p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   El espacio (teal)
   ========================================================================== */
.space-section {
    background: linear-gradient(165deg, var(--color-teal-dark) 0%, var(--color-teal-deep) 100%);
    color: var(--color-cream-light);
    position: relative;
    overflow: hidden;
}
.space-section h2 { color: var(--color-cream-light); }
.space-section .section-header p,
.space-section .space-prose p { color: rgba(239, 237, 232, 0.85); }
.space-layout { max-width: 760px; margin: 0 auto; }
.space-prose { text-align: center; }
.space-prose p { font-size: 1.1rem; line-height: 1.85; }
.space-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    color: #fff;
    line-height: 1.5;
    margin: 28px auto;
    max-width: 620px;
    padding: 22px 30px;
    border-top: 1px solid rgba(198,163,85,0.4);
    border-bottom: 1px solid rgba(198,163,85,0.4);
}
.space-prose .btn { margin-top: 24px; }

/* ==========================================================================
   ¿Es para vos? (checklist)
   ========================================================================== */
.fit-section { background: var(--color-cream-light); }
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.fit-col {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid rgba(22, 78, 78, 0.08);
    box-shadow: var(--shadow-soft);
}
.fit-yes { border-top: 5px solid var(--color-yes); }
.fit-no { border-top: 5px solid var(--color-no); background: var(--color-cream-card); }
.fit-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(22, 78, 78, 0.08);
}
.fit-yes .fit-title i { color: var(--color-yes); }
.fit-no .fit-title { color: var(--color-text-muted); }
.fit-no .fit-title i { color: var(--color-no); }
.fit-list { list-style: none; }
.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: var(--color-text-dark);
    line-height: 1.55;
}
.fit-no .fit-list li { color: var(--color-text-muted); }
.fit-list li:last-child { margin-bottom: 0; }
.fit-mark {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}
.fit-mark.yes { background: rgba(47,138,106,0.14); color: var(--color-yes); }
.fit-mark.no { background: rgba(176,106,92,0.14); color: var(--color-no); }

/* ==========================================================================
   Algunas cosas que valoran
   ========================================================================== */
.value-section { background: var(--color-cream-bg); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--color-cream-card);
    border: 1px solid rgba(22, 78, 78, 0.08);
    border-radius: var(--radius-md);
    padding: 34px 26px;
    text-align: center;
    transition: all var(--transition-smooth);
}
.value-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: var(--shadow-hover);
    border-color: rgba(185,139,106,0.4);
}
.value-card p { margin-bottom: 0; color: var(--color-text-dark); font-size: 1rem; }
.value-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(22, 78, 78, 0.07);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-teal-dark);
    font-size: 1.4rem;
}
.value-note {
    max-width: 820px;
    margin: 48px auto 0;
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 78, 78, 0.06);
}
.value-note p { font-size: 1.05rem; line-height: 1.8; }
.value-note p:last-child { margin-bottom: 0; }
.value-note strong { color: var(--color-teal-dark); }

/* ==========================================================================
   Testimonios
   ========================================================================== */
.testimonial-section {
    background: linear-gradient(180deg, var(--color-cream-light) 0%, var(--color-cream-bg) 100%);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.testi-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 34px 28px 30px;
    border: 1px solid rgba(22, 78, 78, 0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all var(--transition-smooth);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-mark {
    font-family: var(--font-h1);
    font-size: 3rem;
    line-height: 0.6;
    color: var(--color-clay);
    opacity: 0.5;
    margin-bottom: 14px;
}
.testi-card blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.12rem;
    color: var(--color-teal-dark);
    line-height: 1.55;
}
.testi-cta {
    max-width: 720px;
    margin: 52px auto 0;
    text-align: center;
}
.testi-cta p { font-size: 1.1rem; margin-bottom: 26px; }

/* ==========================================================================
   Cómo entiendo el trabajo (approach)
   ========================================================================== */
.approach-section { background: var(--color-cream-light); }
.approach-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.approach-visual { position: relative; }
.approach-img-arch {
    border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 6px solid #fff;
}
.approach-img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.approach-sign {
    font-family: var(--font-h1);
    font-size: 1.3rem;
    color: var(--color-teal-dark);
    text-align: center;
    margin-top: 20px;
}
.approach-content .section-header { margin-bottom: 28px; }

/* ==========================================================================
   Cómo empezar
   ========================================================================== */
.start-section { background: var(--color-cream-bg); }
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 27px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-teal-dark) 0%, rgba(22, 78, 78, 0.12) 100%);
}
.timeline-item { position: relative; padding-left: 82px; margin-bottom: 26px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-node {
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--color-teal-dark);
    color: var(--color-cream-light);
    font-family: var(--font-h1);
    font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 6px var(--color-cream-bg), var(--shadow-soft);
    z-index: 2;
}
.timeline-content {
    background: var(--color-cream-card);
    padding: 26px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 78, 78, 0.08);
    transition: all var(--transition-fast);
}
.timeline-content:hover { box-shadow: var(--shadow-hover); border-color: rgba(22, 78, 78, 0.2); }
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline-content p { margin-bottom: 0; }

.start-details {
    max-width: 780px;
    margin: 48px auto 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 42px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 78, 78, 0.06);
}
.start-details-title { font-size: 1.3rem; margin-bottom: 22px; }
.start-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
}
.start-checklist li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--color-text-dark);
    font-size: 1rem;
}
.start-checklist li i { color: var(--color-yes); margin-top: 6px; font-size: 0.85rem; }

.start-doubts {
    max-width: 780px;
    margin: 40px auto 0;
    text-align: center;
}
.start-doubts h3 { font-size: 1.6rem; margin-bottom: 16px; }
.start-doubts p { font-size: 1.05rem; }
.start-doubts p strong { color: var(--color-teal-dark); }
.start-highlight {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-teal-dark) !important;
    font-size: 1.2rem !important;
    max-width: 60ch;
    margin: 22px auto 30px !important;
    line-height: 1.5;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--color-cream-card); }
.faq-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}
.faq-container .faq-item { margin-bottom: 0; }
@media (max-width: 768px) {
    .faq-container { grid-template-columns: 1fr; }
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    border: 1px solid rgba(22, 78, 78, 0.08);
    overflow: hidden;
    transition: all var(--transition-fast);
}
.faq-item.active { border-color: var(--color-teal-dark); box-shadow: var(--shadow-soft); }
.faq-question {
    padding: 22px 28px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    color: var(--color-teal-dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(22, 78, 78, 0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: transform var(--transition-fast), background var(--transition-fast);
}
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--color-teal-dark); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-item.active .faq-answer { max-height: 400px; padding: 0 28px 24px; }
.faq-answer p { margin-bottom: 0; }

/* ==========================================================================
   Footer (Jewelry Artist inspired)
   ========================================================================== */
.footer {
    background: var(--color-teal-deep);
    color: var(--color-cream-light);
}
.footer-cta {
    background: linear-gradient(160deg, var(--color-teal-mid), var(--color-teal-dark));
    text-align: center;
    padding: 72px 0;
    border-bottom: 1px solid rgba(239, 237, 232, 0.1);
}
.footer-cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 12px;
}
.footer-cta-title {
    color: var(--color-cream-light);
    font-family: var(--font-h1);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    max-width: 18ch;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.footer-brand-center { text-align: center; padding: 66px 0 30px; }
.footer-monogram {
    width: 66px; height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1px solid var(--color-accent-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h1);
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    letter-spacing: 0.05em;
}
.footer-name {
    color: var(--color-cream-light);
    font-family: var(--font-h1);
    font-size: 2rem;
    margin-bottom: 4px;
}
.footer-role {
    color: rgba(239, 237, 232, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    margin-bottom: 0;
}
.footer-rule {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    max-width: 320px; margin: 24px auto 0;
    color: var(--color-accent-gold);
}
.footer-rule span { flex: 1; height: 1px; background: rgba(239, 237, 232, 0.2); }
.footer-rule i { font-size: 0.85rem; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0 60px;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}
.footer-col h4 {
    color: var(--color-accent-gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; color: rgba(239, 237, 232, 0.78); font-size: 0.95rem; }
.footer-links a { color: rgba(239, 237, 232, 0.78); }
.footer-links a:hover { color: var(--color-accent-gold); }
.footer-contact-info { list-style: none; }
.footer-contact-info li {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    color: rgba(239, 237, 232, 0.82);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.footer-contact-info li i { color: var(--color-accent-gold); }
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(239, 237, 232, 0.25);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition-fast);
}
.footer-wa-btn:hover { background: #25d366; border-color: #25d366; }
.footer-wa-btn i { color: #25d366; }
.footer-wa-btn:hover i { color: #fff; }

.footer-bottom {
    padding: 26px 0;
    border-top: 1px solid rgba(239, 237, 232, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(239, 237, 232, 0.5);
}

/* ==========================================================================
   Botones flotantes (subir + WhatsApp)
   ========================================================================== */
.float-stack {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.wa-float {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.55);
    transition: transform var(--transition-fast);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

.to-top {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-teal-dark);
    color: var(--color-cream-light);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(12px) scale(0.85);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--color-teal-deep); transform: translateY(-2px); }

/* ==========================================================================
   Cookie bar (pequeño y discreto)
   ========================================================================== */
.cookie-bar {
    position: fixed;
    left: 22px; bottom: 22px;
    z-index: 950;
    max-width: 340px;
    background: rgba(14, 52, 52, 0.94);
    color: rgba(247, 246, 243, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(247, 246, 243, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.cookie-bar.show { opacity: 1; transform: translateY(0); }
.cookie-text { flex: 1; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}
.cookie-accept { background: var(--color-accent-gold); color: #2a2410; }
.cookie-accept:hover { filter: brightness(1.08); }
.cookie-reject { background: transparent; color: rgba(247, 246, 243, 0.7); border: 1px solid rgba(247, 246, 243, 0.25); }
.cookie-reject:hover { color: #fff; border-color: rgba(247, 246, 243, 0.5); }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 52, 52, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition-fast);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-card {
    background: var(--color-cream-light);
    width: 90%; max-width: 520px;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-fast);
}
.modal-backdrop.open .modal-card { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    background: rgba(22, 78, 78, 0.08);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-teal-dark);
}

/* ==========================================================================
   Scrollytelling reveals (bidireccional)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-visual { order: -1; max-width: 460px; }
    .hero-img { height: 440px; }
    .hero-title { max-width: none; }
    .voluntad-grid { grid-template-columns: 1fr; gap: 32px; }
    .selftalk-chip:nth-child(even) { margin-left: 0; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr; gap: 36px; }
    .approach-visual { max-width: 420px; margin: 0 auto; }
    .approach-img { height: 440px; }
    .footer-cols { grid-template-columns: 1fr; gap: 34px; }
}

/* Nav inline solo en pantallas amplias; el resto usa el panel "Menú" */
@media (max-width: 1100px) {
    .nav-menu { display: none; }
    .menu-toggle { display: inline-flex !important; }
    .header.scrolled .nav-menu { position: static; }
}
@media (max-width: 620px) {
    .nav-cta { display: none; }
}

@media (max-width: 768px) {
    .fit-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .start-checklist { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .fit-col, .value-note, .start-details { padding: 30px 24px; }
    .modal-card { padding: 34px 26px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .floating-pill, .wa-float, .badge-dot { animation: none !important; }
    html { scroll-behavior: auto; }
    .hero-img-arch { transform: none !important; }
}

/* ==========================================================================
   FUSIÓN v2 — Diseño image-forward (estilo index-n4 con contenido de index)
   Hero con imagen a pantalla completa, secciones con fondos e imágenes,
   overlays con transparencia y grids que reparten texto + imagen.
   ========================================================================== */

/* --- HERO tipo n4: imagen full-bleed + texto en columna derecha --- */
/* --- HERO REDESIGN (Split Screen 50/50: 100vh de alto + difuminado central) --- */
.hero,
.hero-split {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: var(--color-cream-bg);
    overflow: hidden;
    padding: 0;
}

.hero-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    transform: scale(1.2);
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Transición difuminada suave en el borde central hacia el lado de la foto */
.hero-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 180px;
    background: linear-gradient(90deg, rgba(252, 252, 249, 0) 0%, rgba(252, 252, 249, 0.5) 45%, var(--color-cream-bg) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-text-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 8% 80px 60px;
    z-index: 2;
}

.hero-text-inner {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    margin-bottom: 20px;
    background: rgba(77, 106, 78, 0.12);
    color: var(--color-teal-dark);
    border: 1px solid rgba(77, 106, 78, 0.22);
}

.hero-title {
    font-family: var(--font-h1);
    font-size: clamp(2.1rem, 3.1vw + 0.8rem, 3.3rem);
    color: var(--color-teal-dark);
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 18ch;
    text-shadow: none;
}

.hero-lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 28px;
}

.hero-lead-strong {
    color: var(--color-teal-dark);
    font-style: italic;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-note {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    border-left: 3px solid var(--color-clay);
    padding-left: 18px;
    max-width: 52ch;
}

.hero-note strong {
    color: var(--color-teal-dark);
}

/* --- Bloque genérico: sección con imagen a un lado y grids asimétricos --- */
.media-split,
.text-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.text-image-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.media-split.media-split--text-first .media-figure { order: 2; }
.media-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.media-figure img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.media-figure:hover img { transform: scale(1.05); }
.media-figure-tag {
    position: absolute;
    left: 18px; bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-teal-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-full);
}

/* --- TAREA 2: Viñetas/Chips limpios en Voluntad --- */
.voluntad-chips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voluntad-chip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(77, 106, 78, 0.12);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.voluntad-chip-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(77, 106, 78, 0.25);
}

.voluntad-chip-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(77, 106, 78, 0.1);
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.voluntad-chip-item p {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* Voluntad Flow Cards */
.voluntad-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.voluntad-flow-card {
    background: #ffffff;
    border: 1px solid rgba(77, 106, 78, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.voluntad-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.voluntad-flow-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(77, 106, 78, 0.1);
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.voluntad-flow-card p {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.6;
}

.voluntad-flow-card .flow-soft {
    color: var(--color-text-muted);
}

.voluntad-flow-card .flow-strong {
    font-family: var(--font-h1);
    font-size: 1.35rem;
    color: var(--color-teal-dark);
    line-height: 1.25;
}

/* --- TAREA 2: Tarjetas y Grid en Sostener sin ayuda --- */
.sostener-img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.sostener-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sostener-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid rgba(77, 106, 78, 0.12);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sostener-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(77, 106, 78, 0.25);
}

.sostener-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(77, 106, 78, 0.1);
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.sostener-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

/* --- TAREA 3: Media Queries para Responsividad (max-width: 992px) --- */
@media (max-width: 992px) {
    /* Contenido de páginas en mobile al 80% del ancho de la pantalla */
    .container:not(.nav-container) {
        width: 80% !important;
        margin: 0 auto;
        padding: 0;
    }

    .hero,
    .hero-split {
        grid-template-columns: 1fr;
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        background: none;
    }

    .hero-image-col {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        order: initial;
    }

    /* Imagen pegada al borde izquierdo */
    .hero-full-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
        transform: scale(1.35);
        transform-origin: left center;
    }

    /* Degradado más corto en mobile: solo en el 52% inferior */
    .hero-image-col::after {
        content: '';
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 52%;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(18, 34, 26, 0.72) 45%,
            rgba(14, 26, 20, 0.96) 100%
        );
        z-index: 2;
    }

    /* Padding bottom generoso en el hero mobile */
    .hero-text-col {
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 90px 10% 80px;
        width: 100%;
        background: transparent;
    }

    .hero-text-inner {
        max-width: 100%;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.32);
    }

    .hero-badge .badge-dot {
        background-color: #9fe0b0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, 2.2rem);
        color: #ffffff;
        max-width: none;
        margin-bottom: 14px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.94);
        margin-bottom: 20px;
    }

    .hero-lead-strong {
        color: #ffffff;
        font-style: italic;
        font-weight: 600;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-note {
        font-size: 0.88rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.88);
        border-left-color: var(--color-accent-gold);
        padding-left: 14px;
    }

    .hero-note strong {
        color: #ffffff;
    }

    .media-split,
    .text-image-grid,
    .sostener-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .media-split.media-split--text-first .media-figure {
        order: -1;
    }

    .voluntad-flow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sostener-img {
        min-height: 300px;
    }

    .sostener-card {
        padding: 20px 22px;
    }
}

/* --- Sección full-bleed con imagen de fondo y overlay (transparencia) --- */
.bleed-section {
    position: relative;
    color: var(--color-cream-light);
    overflow: hidden;
}
.bleed-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
}
.bleed-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 40, 30, 0.82), rgba(30, 50, 38, 0.7));
}
.bleed-section .container { position: relative; z-index: 2; }
.bleed-section h2 { color: #fff; }
.bleed-section .badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}
.bleed-section .prose p,
.bleed-section .prose p strong { color: rgba(255, 255, 255, 0.9); }
.bleed-section .prose p strong { color: #fff; }

/* --- Tarjetas de valor con imagen de fondo (estilo cards n4) --- */
.value-grid { grid-template-columns: repeat(4, 1fr); }
.value-card.value-card--image {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    background: none;
    box-shadow: var(--shadow-soft);
}
.value-card--image .value-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card--image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(18, 34, 26, 0.9) 8%, rgba(18, 34, 26, 0.15) 70%, rgba(18, 34, 26, 0.05) 100%);
}
.value-card--image:hover .value-card-bg { transform: scale(1.07); }
.value-card--image .value-icon {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-bottom: 14px;
}
.value-card--image p {
    position: relative;
    z-index: 3;
    color: #fff !important;
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 992px) {
    .value-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .value-grid { grid-template-columns: 1fr; }
    .value-card.value-card--image { min-height: 320px; }
}

/* --- Doble imagen para "Cómo entiendo el trabajo" --- */
.approach-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.approach-gallery .approach-img-arch { border-radius: var(--radius-lg); overflow: hidden; }
.approach-gallery-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.approach-gallery-small img { width: 100%; height: 240px; object-fit: cover; }

/* --- Banner CTA con imagen de fondo (antes del footer) --- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('../images/anto-chatgpt-1.png') center/cover no-repeat;
    transform: scale(1.03);
}
.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 34, 26, 0.62), rgba(18, 34, 26, 0.72));
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner .badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    margin-bottom: 18px;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; max-width: 20ch; margin-inline: auto; }
.cta-banner p { color: rgba(255, 255, 255, 0.88); max-width: 54ch; margin: 0 auto 28px; }

/* --- Popup WhatsApp con pasos del proceso (reutiliza .modal-*) --- */
.modal-steps-header { margin-bottom: 16px; text-align: center; }
.modal-steps-header .badge { margin-bottom: 12px; }
.modal-steps-header h3 { margin-bottom: 6px; }
.modal-steps-header p { font-size: 0.94rem; margin-bottom: 0; }
.modal-steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 20px;
    text-align: left;
}
.modal-step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(22, 78, 78, 0.04);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(22, 78, 78, 0.08);
}
.modal-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--color-teal-dark);
    color: var(--color-cream-light);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.modal-step-text strong { display: block; color: var(--color-teal-dark); font-size: 0.92rem; line-height: 1.3; }
.modal-step-text span { font-size: 0.82rem; color: var(--color-text-muted); }
.modal-field { margin-bottom: 16px; text-align: left; }
.modal-field label {
    display: block; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 6px; color: var(--color-teal-dark);
}
.modal-field input {
    width: 100%; padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(22, 78, 78, 0.2);
    font-family: var(--font-body); font-size: 1rem;
}

/* ==========================================================================
   FUSIÓN v3 — Ajustes: header minimal, hero limpio, sostener, testimonios
   fusionados, "cómo empezar" compacto, popup mínimo y footer minimalista.
   ========================================================================== */

/* --- Header: logo con círculo "AL", hamburguesa siempre, CTA solo en sticky --- */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.logo-badge {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--color-teal-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h1);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--color-teal-dark);
}
.logo-text { display: flex; flex-direction: column; }
.logo-sub { font-size: 0.64rem; letter-spacing: 0.14em; }

/* Hamburguesa siempre visible */
.menu-toggle { display: inline-flex !important; }

/* CTA del header aparece recién al hacer scroll (sticky) */
.nav-cta { display: none !important; }
.header.scrolled .nav-cta { display: inline-flex !important; }

/* --- Hero content sin fondo (sobre el verde oscuro) --- */
.hero-content--bare {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
@media (max-width: 992px) {
    .hero-content--bare { padding: 0; }
}

/* --- Sostener: bloque claro editorial --- */
.sostener-quote-mark {
    position: absolute;
    top: 6px; left: 22px;
    font-family: var(--font-h1);
    font-size: 5rem;
    line-height: 1;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* --- Testimonios fusionados con "lo que valoran" --- */
.testi-card { display: flex; flex-direction: column; }
.testi-aspect {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-clay);
    background: rgba(77, 106, 78, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    line-height: 1.3;
}
.testi-card blockquote strong {
    font-style: normal;
    font-weight: 600;
    color: var(--color-teal-deep);
    box-shadow: inset 0 -0.5em 0 rgba(198, 163, 85, 0.22);
}
.testimonial-section .value-note { margin-top: 48px; }
.testimonial-section .testi-cta { margin-top: 40px; }

/* --- "Cómo empezar" compacto (conserva todo el texto) --- */
.start-section .section-header { margin-bottom: 34px; }
.start-section .timeline { max-width: 760px; }
.start-section .timeline-item { margin-bottom: 16px; }
.start-section .timeline-content { padding: 18px 24px; }
.start-section .timeline-content h3 { font-size: 1.12rem; }
.start-section .timeline-node {
    width: 48px; height: 48px;
    font-size: 1.1rem;
}
.start-section .timeline::before { left: 23px; }
.start-section .timeline-item { padding-left: 72px; }

.start-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 980px;
    margin: 36px auto 0;
    align-items: start;
}
.start-lower .start-details,
.start-lower .start-doubts {
    margin: 0;
    max-width: none;
}
.start-lower .start-details { padding: 30px 32px; }
.start-lower .start-doubts { text-align: left; }
.start-lower .start-doubts h3 { font-size: 1.4rem; }
.start-lower .start-highlight {
    margin: 16px 0 22px !important;
    max-width: none;
}
@media (max-width: 860px) {
    .start-lower { grid-template-columns: 1fr; gap: 22px; }
    .start-lower .start-doubts { text-align: center; }
}

/* --- Popup WhatsApp: encabezado mínimo + card con scroll seguro --- */
#waModal .modal-card {
    padding: 28px 30px;
    max-height: 92vh;
    overflow-y: auto;
}
#waModal .modal-steps-header {
    margin-bottom: 10px;
    text-align: center;
}
#waModal .modal-steps-header h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0;
}
#waModal .modal-steps-list { gap: 8px; margin: 12px 0 14px; }
#waModal .modal-step-item { padding: 8px 12px; }
#waModal .modal-field { margin-bottom: 12px; }

/* --- Footer minimalista --- */
.footer--min .footer-min {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 0 22px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo-badge {
    border-color: rgba(239, 237, 232, 0.5);
    color: var(--color-cream-light);
    width: 44px; height: 44px;
}
.footer-brand-name {
    font-family: var(--font-h1);
    font-size: 1.3rem;
    color: var(--color-cream-light);
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(239, 237, 232, 0.78); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--color-accent-gold); }
.footer--min .footer-bottom {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 24px;
    text-align: center;
}
@media (max-width: 768px) {
    .footer--min .footer-min { flex-direction: column; text-align: center; gap: 18px; }
}

/* ==========================================================================
   FUSIÓN v4 — Bento "Mi propuesta", timeline horizontal (n4), footer info,
   ocultar WhatsApp flotante en el footer.
   ========================================================================== */

/* --- Mi propuesta terapéutica: bento grid --- */
.space-section { background: var(--color-cream-bg); }
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 16px;
    grid-template-areas:
        "intro intro intro img1  img1  img1"
        "intro intro intro quote quote img2"
        "space space space cambio cambio cambio";
}
.bento-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.bento-intro {
    grid-area: intro;
    background: linear-gradient(160deg, var(--color-teal-dark) 0%, var(--color-teal-deep) 100%);
    color: var(--color-cream-light);
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}
.bento-intro h2 { color: #fff; margin-bottom: 18px; }
.bento-intro p { color: rgba(239, 237, 232, 0.9); margin-bottom: 0; }

.bento-img {
    background-size: cover;
    background-position: center;
    min-height: 180px;
}
.bento-img1 { grid-area: img1; }
.bento-img2 { grid-area: img2; min-height: 150px; }
.bento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 48, 35, 0) 55%, rgba(30, 48, 35, 0.25) 100%);
}

.bento-quote {
    grid-area: quote;
    position: relative;
    background: linear-gradient(150deg, var(--color-teal-deep) 0%, #2b3f2c 100%);
    color: var(--color-text-light);
    padding: 34px 34px 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
/* Barra de acento dorada que ancla visualmente la cita */
.bento-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--color-accent-gold);
}
.bento-quote-mark {
    font-family: var(--font-h1);
    font-size: 4rem;
    line-height: 0.4;
    color: var(--color-accent-gold);
    opacity: 0.9;
    margin-bottom: 16px;
}
.bento-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.32rem;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 0;
}
/* La frase concreta que la persona podría decir: resaltada */
.bento-quote-em {
    color: var(--color-accent-gold);
    font-style: normal;
}

.bento-card {
    background: #fff;
    border: 1px solid rgba(22, 78, 78, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-space { grid-area: space; }
.bento-cambio { grid-area: cambio; }
.bento-card p { font-size: 1.04rem; line-height: 1.7; }
.bento-card p strong { color: var(--color-teal-dark); }
.bento-card .btn { margin-top: 18px; align-self: flex-start; }

@media (max-width: 900px) {
    .bento {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        grid-auto-rows: auto;
    }
    .bento-tile { grid-area: auto !important; }
    .bento-img { min-height: 220px; }
    .bento-img2 { min-height: 220px; }
}

/* --- Cómo empezar: fondo verde + proceso en tarjetas numeradas --- */
.start-section {
    background: #374635;
    color: var(--color-cream-light);
}

/* Intro editorial: encabezado + párrafo que invita a la lectura */
.start-intro {
    max-width: 720px;
    margin-bottom: 46px;
}
.start-intro .section-header { margin-bottom: 20px; }
.start-section .section-header h2 {
    color: #fff;
    letter-spacing: -0.01em;
}
.start-section .section-header h2 .soft { color: #a9bda6; font-style: italic; }
.start-lead {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Etiqueta que rotula el bloque de pasos */
.start-steps-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

/* Proceso: 4 tarjetas conectadas */
.proc-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 64px;
}
.proc-step {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 26px 24px 24px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.proc-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 163, 85, 0.5);
}
/* Flecha de continuidad entre tarjetas */
.proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%; right: -13px;
    width: 8px; height: 8px;
    border-top: 1.5px solid rgba(198, 163, 85, 0.75);
    border-right: 1.5px solid rgba(198, 163, 85, 0.75);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}
.proc-num {
    display: block;
    font-family: var(--font-h1);
    font-size: 2rem;
    line-height: 1;
    color: var(--color-accent-gold);
    margin-bottom: 14px;
}
.proc-step h4 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
}
.proc-step p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }

@media (max-width: 900px) {
    .proc-timeline { grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
    .proc-step:nth-child(2n)::after { display: none; }
}
@media (max-width: 560px) {
    .proc-timeline { grid-template-columns: 1fr; }
    .proc-step::after { display: none !important; }
}

/* start-lower sobre fondo verde: la tarjeta blanca se mantiene, el texto se aclara */
.start-section .start-doubts { color: rgba(255, 255, 255, 0.9); }
.start-section .start-doubts h3 { color: #fff; }
/* Los <p> heredaban #555 de la regla global `p{}` y quedaban ilegibles sobre el verde:
   se fuerza un color claro con suficiente contraste. */
.start-section .start-doubts p { color: rgba(255, 255, 255, 0.9); }
.start-section .start-doubts p strong { color: #fff; }
.start-section .start-highlight { color: var(--color-accent-gold) !important; }

/* --- Bloque inferior: se lee como un par de paneles relacionados --- */
.start-lower { align-items: stretch; gap: 24px; }

/* Panel claro: qué se conversa durante la llamada */
.start-details {
    display: flex;
    flex-direction: column;
    background: #fdfdfb;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.55);
}
.start-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    margin-bottom: 14px;
}
.start-card-eyebrow i { color: var(--color-accent-gold); }
.start-details .start-details-title {
    color: var(--color-teal-dark);
    font-size: 1.28rem;
    margin-bottom: 22px;
}
.start-checklist { gap: 14px 26px; }
.start-checklist li {
    align-items: center;
    line-height: 1.4;
    font-weight: 500;
}
.start-checklist li i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    margin-top: 0;
    border-radius: 50%;
    background: rgba(77, 106, 78, 0.12);
    color: var(--color-yes);
    font-size: 0.72rem;
}
/* Nota de cierre: da propósito al pie de la tarjeta y equilibra la altura */
.start-details-foot {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: auto 0 0 !important;
    padding-top: 22px;
    border-top: 1px solid rgba(77, 106, 78, 0.14);
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}
.start-details-foot i { color: var(--color-accent-gold); margin-top: 4px; }
.start-details-foot strong { color: var(--color-teal-dark); }

/* Panel de reaseguramiento: mismo peso visual que la tarjeta, sobre el verde */
.start-lower .start-doubts {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    text-align: left;
}
.start-doubts .start-card-eyebrow { color: rgba(255, 255, 255, 0.92); }
.start-doubts .start-card-eyebrow i { color: var(--color-accent-gold); }
.start-lower .start-doubts h3 { font-size: 1.55rem; color: #fff; margin-bottom: 16px; }
.start-lower .start-doubts p { font-size: 1rem; margin-bottom: 14px; }

/* Frase clave como pull-quote con acento dorado */
.start-lower .start-highlight {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.16rem !important;
    line-height: 1.5;
    color: var(--color-accent-gold) !important;
    border-left: 3px solid var(--color-accent-gold);
    padding-left: 18px;
    margin: 8px 0 26px !important;
    max-width: none;
}
/* La CTA queda anclada al pie, alineando ambos paneles */
.start-doubts .btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 860px) {
    .start-lower .start-doubts { padding: 28px 24px; }
    .start-doubts .btn { align-self: stretch; justify-content: center; }
}

/* --- Footer: fila de info minimalista --- */
.footer-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding: 6px 0 30px;
    border-top: 1px solid rgba(239, 237, 232, 0.1);
    margin-top: 4px;
}
.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.92rem;
    color: rgba(239, 237, 232, 0.82);
    text-align: center;
}
.footer-info-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}
.footer-info-wa { color: #fff; font-weight: 600; }
.footer-info-wa i { color: #25d366; margin-right: 6px; }
.footer-info-wa:hover { color: var(--color-accent-gold); }

/* --- Footer: todo el texto en un mismo color unificado --- */
.footer--min { --footer-text: rgba(239, 237, 232, 0.82); }
.footer--min .footer-brand-name,
.footer--min .footer-nav a,
.footer--min .footer-info-item,
.footer--min .footer-info-label,
.footer--min .footer-info-wa,
.footer--min .footer-bottom,
.footer--min .footer-bottom div,
.footer--min .footer-credit,
.footer--min .footer-credit a {
    color: var(--footer-text);
}
/* El hover conserva la familia de color: solo se intensifica a crema plena */
.footer--min .footer-nav a:hover,
.footer--min .footer-info-wa:hover,
.footer--min .footer-credit a:hover {
    color: #efede8;
}
.footer--min .footer-info-wa i { color: var(--footer-text); }
.footer-credit { font-size: 0.82rem; }
.footer-credit a { text-decoration: underline; text-underline-offset: 3px; }

/* --- WhatsApp flotante: desaparece al llegar al footer --- */
.wa-float {
    transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.footer-visible .wa-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.9);
}

/* --- Header compacto en mobile: el CTA sticky en una sola línea --- */
@media (max-width: 620px) {
    .header .nav-cta {
        padding: 9px 15px;
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .nav-right { gap: 10px; }
    /* Liberamos ancho ocultando el subtítulo del logo en pantallas chicas */
    .logo-sub { display: none; }
    .logo-name { white-space: nowrap; }
}

/* En teléfonos angostos el CTA de texto apretaba el header (logo en 2 líneas).
   Se oculta por completo: el botón flotante de WhatsApp cubre esa acción. */
@media (max-width: 560px) {
    .header .nav-cta,
    .header.scrolled .nav-cta { display: none !important; }
}

/* ==========================================================================
   Mejoras de legibilidad y jerarquía (revisión desktop + mobile)
   ========================================================================== */

/* Resaltado de palabras/frases clave. Fondo claro: subrayado dorado sutil. */
.hl {
    color: var(--color-teal-deep);
    font-weight: 600;
    box-shadow: inset 0 -0.5em 0 rgba(198, 163, 85, 0.24);
}
/* Variante para fondos oscuros (verde): texto claro + subrayado más marcado. */
.hl-light {
    color: #fff;
    font-weight: 600;
    box-shadow: inset 0 -0.5em 0 rgba(198, 163, 85, 0.42);
}

/* --- Bento: tarjetas blancas más legibles y con mejor ritmo de lectura --- */
.bento-card {
    justify-content: flex-start;
    gap: 4px;
}
.bento-space { justify-content: center; }
.bento-card p { color: #3a4a3c; }            /* algo más oscuro que #555 para contraste */
.bento-card p:first-child { font-size: 1.08rem; }
.bento-space p:last-child {
    font-family: var(--font-heading);
    font-size: 1.24rem;
    line-height: 1.4;
    color: var(--color-teal-dark);
    margin-top: 10px;
}
/* Marca de cita decorativa en la tarjeta-cita del bento, más presente */
.bento-quote-mark { font-size: 4rem; opacity: 0.9; }

/* --- Testimonios: más "editorial", con comilla decorativa y acento --- */
.testi-card {
    padding-top: 30px;
    border-top: 3px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(120deg, var(--color-accent-gold), var(--color-accent-sage)) border-box;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
}
.testi-card::before {
    content: '\201C';
    font-family: var(--font-h1);
    font-size: 3rem;
    line-height: 0.7;
    color: var(--color-accent-gold);
    opacity: 0.55;
    display: block;
    margin-bottom: 6px;
}
.testi-aspect {
    color: var(--color-teal-deep);
    background: rgba(198, 163, 85, 0.14);
}
.testi-card blockquote { font-size: 1.15rem; }

/* --- Experiencias: nota de cierre con imagen (más agradable a la lectura) --- */
.value-note--media {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 0;
    align-items: stretch;
    text-align: left;
    padding: 0;
    overflow: hidden;
}
.value-note-media { min-height: 280px; }
.value-note-media img { width: 100%; height: 100%; object-fit: cover; }
.value-note-text { padding: 40px 44px; align-self: center; }
@media (max-width: 768px) {
    .value-note--media { grid-template-columns: 1fr; }
    .value-note-media { min-height: 210px; }
    .value-note-text { padding: 28px 24px 32px; text-align: center; }
}

/* --- Centrado general del footer --- */
.footer,
.footer--min {
    text-align: center;
}
.footer--min .footer-min {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.footer-brand {
    justify-content: center;
}
.footer-nav {
    justify-content: center;
    text-align: center;
}
.footer-info {
    justify-content: center;
    text-align: center;
}
.footer-info-item {
    align-items: center;
    text-align: center;
}
.footer--min .footer-bottom,
.footer-bottom {
    justify-content: center;
    text-align: center;
    align-items: center;
}

