:root {
    /* Paleta solicitada por la cliente */
    --primary-teal: #339d92;   /* Verde azulado principal */
    --secondary-teal: #41aca4; /* Tono medio */
    --mint-light: #97ceca;     /* Menta suave */
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --cream: #f4f9f8;

    /* Tipografía */
    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
}
/* Imagen Secundaria (La pequeña que tendrá el efecto) */
.img-secondary {
    position: absolute;
    bottom: 20px; /* Se posiciona abajo */
    right: 0;     /* Se posiciona a la derecha */
    width: 55%;   /* Tamaño pequeño */
    z-index: 2;   /* Por encima de la principal */
}

/* Opcional: Si quieres que la imagen principal también se mueva 
   en sentido contrario ligeramente */
.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%; /* No ocupa todo el ancho para dar aire */
    z-index: 1;
}

.img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid var(--primary-teal); /* Opcional: borde de marca */
}
.img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid white; /* Crea el efecto de separación */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.experience-badge-new {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-teal);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* --- RESET Y ESTRUCTURA --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    margin: 0; padding: 0; overflow-x: hidden;
}

body {
    background-color: var(--white);
    font-family: var(--sans);
    color: var(--dark);
    padding-top: 80px; 
}

/* REGLA MAESTRA DE CONTENEDOR */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
}

/* --- ENCABEZADO FIJO --- */
.main-header {
    position: fixed; /* Esto lo hace flotar */
    top: 0;          /* Esto lo pega AL TECHO (Cero espacio arriba) */
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: white; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary-teal); /* Fondo Turquesa */
    padding: 10px 0;
    color: white;             /* Texto Blanco */
    border-bottom: none;      /* Quitamos bordes grises */
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links { display: flex; gap: 30px; }
.top-link {
    text-decoration: none;
    color: white !important;  /* Fuerza el color blanco */
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
    transition: 0.3s;
}
.top-link:hover {
    opacity: 1;
}
.top-link.active {
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.8); /* Subrayado blanco */
    opacity: 1;
}

.top-info {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
}
.top-contact span {
    color: white !important;
}
/* --- NAVBAR PRINCIPAL --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: #ffffff;
    width: 100%;
    transition: 0.4s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative; /* Necesario para el menú móvil */
    z-index: 10001;
}

/* --- AJUSTES DEL LOGO (SOLICITUD: MÁS GRANDE) --- */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 80px; /* CAMBIO: Aumentado de tamaño (antes era ~60px) */
    width: auto;
    transition: height 0.3s ease;
}
@media (max-width: 768px) {
    .main-logo {
        height: 60px; 
    }
    .story-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        text-align: center;
    }
    
    .story-images-wrapper {
        height: 450px; /* Reducimos altura en móvil */
        margin-bottom: 40px;
    }

    .img-main { width: 85%; margin: 0 auto; position: relative; }
    .img-secondary { width: 60%; bottom: -30px; }
}

/* --- NAVBAR DISTRIBUCIÓN --- */
.nav-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

.nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-links a { 
    text-decoration: none; color: var(--dark); 
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; 
}

/* Botón "Get a Free Quote" */
.btn-nav-quote {
    border: 1px solid var(--primary-teal);
    color: var(--primary-teal) !important;
    padding: 8px 18px;
    transition: 0.4s;
    text-decoration: none;
}

.btn-nav-quote:hover {
    background: var(--primary-teal);
    color: white !important;
}

/* --- HERO SECTION GLOBAL --- */
.hero-impact {
    min-height: 85vh; 
    display: flex;
    align-items: center;
    background: #fcfaf7;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

/* CAMBIO IMPORTANTE: LOGICA DE CENTRADO DEL HERO */
/* Reemplazamos el Grid por Flex para juntarlos en el centro como pediste */
.hero-container {
    display: flex;             /* Usamos Flexbox */
    align-items: center;       /* Centrado vertical */
    justify-content: center;   /* CENTRADO HORIZONTAL (Junta todo al medio) */
    gap: 80px;                 /* ESPACIO FIJO entre texto e imagen (ajusta si quieres más/menos) */
    width: 100%;
    height: 100%;
    max-width: 1100px;         /* Limitamos el ancho para que no se separen tanto */
    margin: 0 auto;            /* Asegura márgenes automáticos a los lados */
}

/* Control del ancho del texto e imagen para que funcionen con Flex */
.hero-content {
    flex: 0 1 550px; /* El texto ocupa máximo 550px */
}
.hero-visual {
    flex: 0 1 auto;  /* La imagen ocupa lo que necesita */
    display: flex;
    justify-content: center;
}

/* --- 2. SOMBRA TURQUESA (ESTILO LOGIN) --- */
.hero-content img, .hero-image img, .image-mask img { 
    /* Borde suave */
    border: 4px solid #339d92; 
    border-radius: 15px;
    
    /* CAMBIO: LA SOMBRA TIPO ARCO/BLOQUE VERDE */
    box-shadow: 15px 15px 0px #339d92; 
    
    transition: all 0.3s ease;
}
/* Efecto al pasar el mouse */
.hero-content img:hover, .hero-image img:hover, .image-mask img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0px #339d92;
}

/* --- 3. LISTA HORIZONTAL CON SEPARADORES --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.feature-list li {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* El Separador (La línea verde entre palabras) */
.feature-list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 15px;
    background-color: #339d92;
    margin-left: 15px;
    transform: skew(-15deg);
}

/* --- TIPOGRAFÍA HERO --- */
.tagline {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.main-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 25px;
}

.hero-description {
    max-width: 480px;
    font-size: 1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Botones del Hero */
.hero-cta-group { display: flex; align-items: center; gap: 20px; }

.cta-primary, .btn-gold-fill, .btn-gold-solid {
    background-color: var(--primary-teal) !important;
    color: var(--white) !important;
    border: none;
    padding: 14px 30px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-primary:hover { background-color: var(--secondary-teal) !important; transform: translateY(-3px); }

/* Link secundario (Explore Services) */
.cta-secondary {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    margin-left: 20px;
    transition: 0.3s ease;
    display: inline-block;
}

.cta-secondary::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background-color: var(--mint-light);
    transform: scaleX(0.8); transform-origin: right; transition: 0.4s;
}

.cta-secondary:hover { color: var(--primary-teal); }
.cta-secondary:hover::after { background-color: var(--primary-teal); transform: scaleX(1); transform-origin: left; }

/* Visual Hero Estilo Original */
.hero-visual {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-mask {
    width: 100%; /* Ajustado para flex */
    max-width: 500px;
    height: auto;
    border-radius: 15px; /* Quitamos el radio extraño para que cuadre con la sombra */
    /* overflow: hidden; <- Quitamos overflow hidden para que se vea la sombra */
}

.parallax-img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }

.floating-experience {
    position: absolute; top: 15%; right: -20px; /* Ajuste posición */
    background: #fff; padding: 20px 30px;
    border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 15px; z-index: 3;
}
.exp-number { font-family: var(--serif); font-size: 3rem; color: var(--primary-teal); line-height: 1; }
.exp-text { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; line-height: 1.4; font-weight: 700; }

/* --- SECCIONES GENERALES --- */
.results-premium { padding: 70px 0; }
.about-elite-section { padding: 80px 0; background-color: #fcfcfc; }
.organic-section { padding: 70px 0; background-color: #F8FBFA; }
.how-it-works-timeline { padding: 70px 0; background-color: var(--cream); text-align: center; }
.testimonials { padding: 80px 0; background: linear-gradient(180deg, #ffffff 0%, #f9fbfb 100%); text-align: center; }

/* Headers de sección */
.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header-centered h2, 
.testimonials-header h2, 
.hiw-header h2,
.about-text-content h2,
.organic-content h2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.2;
}

.section-tag {
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}

.serif-italic, .serif-italic-mint { 
    font-family: var(--serif); 
    font-style: italic; 
    color: var(--primary-teal); 
}

/* --- ABOUT ELITE --- */
.about-elite-grid {
    display: grid;
    grid-template-columns: 400px 1fr; 
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.about-visual-block {
    background-color: var(--mint-light);
    height: 380px;
    width: 100%;
    border-radius: 4px;
    position: relative;
    box-shadow: 20px 20px 0px rgba(51, 157, 146, 0.05); 
}

.pattern-group {
    position: absolute; display: flex; flex-direction: column; gap: 2px;
    color: #5d8c89; font-family: monospace; font-weight: bold; font-size: 1.2rem;
    line-height: 1; letter-spacing: 4px;
}
.pattern-group.top-left { top: 30px; left: 30px; }
.pattern-group.bottom-right { bottom: 30px; right: 30px; text-align: right; }

.about-text-content p {
    color: #666; margin-bottom: 15px; font-size: 0.95rem;padding-left: 20px; line-height: 1.7; max-width: 600px;
}

.link-arrow-elite {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 15px;
    text-decoration: none; color: #5d8c89; font-weight: 500; font-size: 0.9rem; transition: 0.3s;
}
.link-arrow-elite:hover { color: var(--primary-teal); gap: 15px; }

/* --- GALLERY / SLIDER --- */
.results-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.comparison-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    transition: transform 0.4s ease; border: 1px solid #f0f0f0;
}
.comparison-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.comparison-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    container-type: inline-size; 
}

.img-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; 
    height: 100%;
    overflow: hidden; 
    z-index: 2;
    border-right: 2px solid white;
}

.img-overlay-photo {
    width: 100cqw !important;
    max-width: none !important;
    min-width: 100cqw !important;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.comparison-overlay img { width: auto; height: 100%; max-width: none; }

/* Slider UI */
.slider { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; appearance: none; z-index: 10; cursor: ew-resize; }
.slider-button { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 45px; 
    height: 45px; 
    background: #ffffff; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 5;
    color: var(--primary-teal) !important;
    box-shadow: 0 4px 15px rgba(51, 157, 146, 0.3); 
    pointer-events: none; 
}

.slider-button i {
    color: var(--primary-teal) !important;
}
.card-body { padding: 20px; text-align: left; }
.card-body h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 5px; color: var(--dark); }
.card-body p { font-size: 0.8rem; color: #777; margin-bottom: 15px; }
.btn-text { text-decoration: none; color: var(--primary-teal); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 60px;
    background: transparent;
    cursor: ew-resize;
}

.slider::-moz-range-thumb {
    width: 60px;
    height: 60px;
    background: transparent;
    cursor: ew-resize;
    border: none;
}
.slider:focus { outline: none; }

/* --- ORGANIC SECTION --- */
.organic-wrapper {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px;
    align-items: center;
}
.image-frame { border-radius: 40px 40px 0 40px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.image-frame img { width: 100%; height: 450px; object-fit: cover; display: block; }

.organic-benefits { margin-top: 30px; }
.benefit { display: flex; gap: 15px; margin-bottom: 20px; }
.benefit-icon { 
    width: 40px; height: 40px; background: rgba(51, 157, 146, 0.1); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: var(--primary-teal); flex-shrink: 0; 
}
.benefit-text h4 { font-size: 1rem; margin-bottom: 3px; color: var(--dark); }
.benefit-text p { font-size: 0.85rem; color: #666; line-height: 1.4; }

/* --- TIMELINE --- */
.hiw-header { margin-bottom: 40px; }
.timeline-container { position: relative; max-width: 1000px; margin: 50px auto; }
.timeline-line { 
    position: absolute; top: 25px; left: 10%; right: 10%; height: 2px; 
    background: var(--mint-light); z-index: 1; 
}
.timeline-steps { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.timeline-item { flex: 1; padding: 0 10px; }

.step-circle {
    width: 50px; height: 50px; background: #fff; 
    border: 2px solid var(--primary-teal); color: var(--primary-teal); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin: 0 auto 15px; transition: 0.3s;
}
.timeline-item:hover .step-circle { background: var(--primary-teal); color: #fff; transform: scale(1.1); }
.step-content h3 { font-size: 0.95rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.step-content p { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }

.testimonial-card {
    background: #fff; padding: 35px 25px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid transparent;
}
.testimonial-card.featured { border-color: var(--mint-light); transform: scale(1.02); z-index: 2; }

/* CAMBIO: Estrellas turquesas en vez de doradas */
.stars { color: var(--primary-teal); margin-bottom: 15px; font-size: 1rem; }

.client-info strong { font-size: 0.9rem; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }

/* --- FOOTER --- */
.main-footer {
    background-color: var(--cream);
    padding-top: 80px;
    border-top: 1px solid rgba(51, 157, 146, 0.1);
    font-size: 0.9rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.brand-desc {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column h4 {
    color: var(--primary-teal);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links, .footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact-info li { margin-bottom: 12px; }

.footer-links a, .footer-contact-info a {
    text-decoration: none;
    color: var(--dark);
    transition: 0.3s ease;
    display: inline-block;
}

.footer-links a:hover, .footer-contact-info a:hover {
    color: var(--primary-teal);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: rgba(51, 157, 146, 0.05);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    letter-spacing: 1px;
}

.designer-link {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
}

.separator { margin: 0 10px; color: #ccc; }

/* --- ORGANIC BADGE --- */
.organic-image { position: relative; }

.eco-floating-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 5;
    border-left: 4px solid var(--primary-teal);
}

.eco-floating-card i {
    color: var(--primary-teal);
    font-size: 1.4rem;
}

.eco-floating-card span {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dark);
    text-transform: uppercase;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(51, 157, 146, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn i { font-size: 35px; }

.whatsapp-btn:hover {
    background-color: var(--secondary-teal);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(51, 157, 146, 0.6);
}

.tooltip-text {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background-color: white;
    color: var(--primary-teal);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* --- ABOUT PAGE --- */
.page-hero {
    padding: 120px 0 80px;
    background-color: var(--cream);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--dark);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.hero-subtext {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.8;
}

.story-section { padding: 100px 0; background: white; }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos columnas iguales */
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
/* --- CONTENEDOR DE IMÁGENES (MOSAICO) --- */
.story-images-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fija para el contenedor de fotos */
}
.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}
.story-image-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.story-img {
    width: 100%;
    height: 550px; /* Altura para que se vea bien la figura */
    object-fit: cover; /* Esto recorta los lados que sobren sin deformarla */
    object-position: top center; /* IMPORTANTE: Enfoca la cara, no los pies */
    display: block;
    transition: transform 0.5s ease;
}
.story-image-block:hover .story-img { transform: scale(1.03); }
@media (max-width: 768px) {
    .story-img {
        height: 400px;
        object-position: top center; 
    }
}
.experience-badge {
    position: absolute; bottom: 30px; right: -20px;
    background: var(--primary-teal); color: white;
    padding: 20px 30px; border-radius: 10px;
    box-shadow: 0 10px 30px rgba(51, 157, 146, 0.3);
    text-align: center;
}

.experience-badge .years {
    display: block; font-family: var(--serif); font-size: 2.5rem; line-height: 1; font-weight: 700;
}
.experience-badge .label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
}

.lead-text {
    font-size: 1.1rem; color: var(--primary-teal); font-weight: 500;
    margin-bottom: 20px; line-height: 1.6;
}

.story-content h2 {
    font-family: var(--serif); font-size: 2.5rem; margin-bottom: 25px; color: var(--dark); line-height: 1.2;
}

.signature-block {
    margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px;
}
.signature-block h3 {
    font-family: 'Cinzel', serif; color: var(--dark); font-size: 1.2rem;
}

.values-section { padding: 100px 0; background-color: #F8FBFA; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.value-card {
    background: white; padding: 40px 30px; border-radius: 15px;
    text-align: center; transition: 0.3s; border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: var(--mint-light);
}

.value-icon {
    font-size: 2.5rem; color: var(--primary-teal); margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--serif); font-size: 1.3rem; margin-bottom: 15px; color: var(--dark);
}
.value-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* 4. CTA Banner */
.cta-banner {
    padding: 80px 0; background-color: var(--primary-teal); text-align: center; color: white;
}

.cta-banner h2 {
    font-family: var(--serif); font-size: 2.2rem; margin-bottom: 30px; color: white;
}
.cta-buttons { display: flex; justify-content: center; gap: 20px; align-items: center; }

.cta-banner .cta-secondary {
    color: white; border-bottom-color: rgba(255,255,255,0.5);
}
.cta-banner .cta-secondary:hover {
    color: var(--cream); border-bottom-color: white;
}

.cta-banner .btn-gold-solid {
    background: white !important;
    color: var(--primary-teal) !important;
}
.cta-banner .btn-gold-solid:hover {
    background: var(--cream) !important;
    transform: translateY(-3px);
}

.quote-box {
    margin: 30px 0; padding-left: 20px; border-left: 3px solid var(--primary-teal);
    font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--primary-teal); font-weight: 600;
}

/* --- SERVICES PAGE STYLES --- */
.services-list-section { padding: 80px 0; background: #fff; }

.service-row {
    display: flex; align-items: center; gap: 80px; margin-bottom: 100px;
}
.service-row.reverse { flex-direction: row-reverse; }

.service-image-col, .service-text-col { flex: 1; }

.service-frame {
    position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-frame::before {
    content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
    background: var(--mint-light); z-index: -1; border-radius: 20px; opacity: 0.3;
}

.service-frame img {
    width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 0.4s ease;
}
.service-frame:hover img { transform: scale(1.03); }

.service-icon {
    font-size: 2rem; color: var(--primary-teal); margin-bottom: 20px;
    background: rgba(51, 157, 146, 0.1); width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.service-text-col h2 {
    font-family: var(--serif); font-size: 2.2rem; color: var(--dark); margin-bottom: 20px;
}
.service-text-col p { color: #666; margin-bottom: 25px; line-height: 1.6; }

.service-checklist { list-style: none; padding: 0; margin-bottom: 30px; }
.service-checklist li {
    display: flex; align-items: center; gap: 15px; margin-bottom: 12px;
    font-size: 0.95rem; color: var(--dark); font-weight: 500;
}
.service-checklist i { color: var(--primary-teal); font-size: 0.9rem; }

.organic-banner-slim {
    background-color: #F8FBFA; padding: 50px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}

.organic-flex {
    display: flex; align-items: center; justify-content: center; gap: 30px; max-width: 800px; margin: 0 auto;
}
.organic-icon i { font-size: 3rem; color: var(--primary-teal); }
.organic-text h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 5px; }
.organic-text p { font-size: 0.9rem; color: #666; margin: 0; }

/* --- ADD-ONS SECTION --- */
.addons-section { padding: 100px 0; background-color: #F8FBFA; }
.addons-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}

.addon-card {
    background: white; padding: 40px 30px; border-radius: 15px;
    text-align: center; border: 1px solid #eee; transition: 0.3s ease;
    position: relative; overflow: hidden;
}

.addon-card:hover {
    transform: translateY(-5px); border-color: var(--primary-teal);
    box-shadow: 0 15px 30px rgba(51, 157, 146, 0.1);
}

.addon-icon {
    font-size: 2rem; color: var(--white); background-color: var(--primary-teal);
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(51, 157, 146, 0.3);
}

.addon-card h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 15px; color: var(--dark); }
.addon-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }
.addon-card strong { color: var(--primary-teal); font-weight: 600; }

/* --- PORTFOLIO --- */
.transformations-section { padding: 80px 0; background-color: #fff; }
.static-gallery-section { padding: 80px 0 120px; background-color: #F8FBFA; }

.gallery-masonry {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px; gap: 20px;
}

.gallery-item {
    position: relative; border-radius: 15px; overflow: hidden;
    cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute; inset: 0; background: rgba(51, 157, 146, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white; font-family: var(--serif); font-size: 1.5rem;
    border-bottom: 2px solid white; padding-bottom: 5px;
    transform: translateY(20px); transition: 0.4s ease;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* --- CONTACT PAGE --- */
.contact-section { padding: 80px 0 120px; background-color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: flex-start; }

.contact-info-col h2 {
    font-family: var(--serif); font-size: 2.2rem; margin-bottom: 20px; color: var(--dark);
}

.contact-intro { color: #666; margin-bottom: 40px; line-height: 1.6; }
.info-items { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; align-items: center; gap: 20px; }

.icon-circle {
    width: 50px; height: 50px; background-color: rgba(51, 157, 146, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary-teal); font-size: 1.2rem; flex-shrink: 0;
}

.info-text .label {
    display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
    color: #999; margin-bottom: 5px; font-weight: 600;
}

.info-link, .info-text p {
    font-family: var(--serif); font-size: 1.1rem; color: var(--dark);
    text-decoration: none; margin: 0; line-height: 1.4; font-weight: 500;
}
.info-link:hover { color: var(--primary-teal); }

.social-connect { margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; }
.social-connect h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.social-icons { display: flex; gap: 20px; }

.social-icons a {
    width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); text-decoration: none; transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-teal); color: white; border-color: var(--primary-teal);
}

.premium-form { background: #F8FBFA; padding: 50px; border-radius: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group { margin-bottom: 30px; }

.form-group label {
    display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--primary-teal); margin-bottom: 10px; font-weight: 600;
}

.premium-form input, .premium-form select, .premium-form textarea {
    width: 100%; background: transparent; border: none; border-bottom: 2px solid #e0e0e0;
    padding: 10px 0; font-family: var(--sans); font-size: 1rem; color: var(--dark);
    outline: none; transition: 0.3s;
}

.premium-form input:focus, .premium-form select:focus, .premium-form textarea:focus {
    border-bottom-color: var(--primary-teal);
}
.premium-form button { width: 100%; margin-top: 10px; cursor: pointer; }

.map-area {
    position: relative; height: 450px; width: 100%; overflow: hidden;
}
.map-overlay-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: white; padding: 20px 40px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 10; pointer-events: none;
}
.map-overlay-text h3 {
    font-family: var(--serif); font-size: 1.2rem; color: var(--primary-teal); margin: 0;
}

/* --- REFERRAL BANNER STYLES --- */
.referral-banner {
    background-color: var(--primary-teal);
    padding: 80px 0; margin: 60px 0; color: white; position: relative; overflow: hidden;
}

.referral-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}

.referral-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 50px; position: relative; z-index: 2;
}

.referral-text { max-width: 600px; }

.referral-text h2 {
    font-family: var(--serif); font-size: 2.5rem; margin: 15px 0 20px; color: white;
}

/* CAMBIO: Menta claro en lugar de dorado */
.serif-italic-gold {
    font-family: var(--serif);
    font-style: italic;
    color: var(--mint-light); 
}

.referral-text p {
    font-size: 1.1rem; line-height: 1.6; margin-bottom: 10px; opacity: 0.95;
}

/* CAMBIO: Borde menta claro en lugar de dorado */
.referral-text strong {
    color: #fff;
    border-bottom: 1px solid var(--mint-light);
}

.small-note {
    font-size: 0.85rem !important; font-style: italic; opacity: 0.7 !important; margin-top: 10px;
}

.section-tag-white {
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem;
    background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 50px; font-weight: 600;
}

.btn-white-solid {
    background: white; color: var(--primary-teal); padding: 15px 35px; border-radius: 4px;
    text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; border: none; cursor: pointer; transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-white-solid:hover {
    background: var(--cream); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- MODAL (POPUP) --- */
.modal {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px); animation: fadeIn 0.4s;
}

.modal-content {
    background-color: #fff; margin: 10% auto; padding: 40px; border-radius: 20px;
    width: 90%; max-width: 500px; position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); text-align: center; animation: slideUp 0.4s;
}

.close-modal {
    color: #aaa; position: absolute; top: 15px; right: 25px;
    font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--primary-teal); }

.modal-header h2 {
    font-family: var(--serif); color: var(--primary-teal); margin-bottom: 10px;
}

/* CAMBIO: Icono modal a turquesa */
.modal-icon {
    font-size: 3rem;
    color: var(--primary-teal); 
    margin-bottom: 20px;
}

.referral-form { margin-top: 30px; text-align: left; }
.referral-form .form-group { margin-bottom: 20px; }
.referral-form label { display: block; font-size: 0.8rem; font-weight: 600; color: #666; margin-bottom: 5px; }
.referral-form input { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem;
}
.referral-form input:focus { border-color: var(--primary-teal); outline: none; }

.privacy-note { font-size: 0.75rem; color: #999; margin-top: 15px; text-align: center; }

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideUp { from {transform: translateY(50px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }

/* --- BOTÓN HAMBURGUESA --- */
.menu-toggle { 
    display: none; 
    font-size: 1.8rem; 
    color: var(--primary-teal); 
    cursor: pointer; 
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 992px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 900px) {
    /* CORRECCIÓN MENÚ MÓVIL (Para que no se esconda) */
    .menu-toggle { display: block; z-index: 10002; }
    
    .nav-links {
        display: none; 
        position: absolute; 
        top: 100%; left: 0; width: 100%;
        background-color: white; /* IMPORTANTE: Fondo blanco */
        flex-direction: column; align-items: center;
        padding: 30px 0; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); 
        z-index: 10001;
        border-top: 1px solid #eee;
    }
    .nav-links.active { display: flex; animation: slideDown 0.3s ease forwards; }
    .nav-links li { margin: 15px 0; }
    .btn-nav-quote { display: inline-block; margin-top: 10px; }

    /* CORRECCIÓN HERO MÓVIL */
    .hero-container { 
        flex-direction: column; 
        text-align: center;
        padding: 20px;
        gap: 40px;
    }
    .hero-content { 
        padding: 20px 0; 
        order: 2; 
        text-align: center; 
        flex: auto;
    }
    .hero-visual { 
        height: auto; 
        order: 1; 
        width: 100%;
    }
    .hero-description { margin: 0 auto 30px; }
    .hero-cta-group { justify-content: center; }

    /* OTROS AJUSTES DE TU CÓDIGO ORIGINAL */
    .about-elite-grid, .organic-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-visual-block { width: 80%; margin: 0 auto; height: 300px; }
    .results-grid-three, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .story-grid, .values-grid { grid-template-columns: 1fr; gap: 50px; }
    .experience-badge { right: 0; }
    .page-hero h1 { font-size: 2.2rem; }
    .service-row, .service-row.reverse { flex-direction: column; gap: 40px; margin-bottom: 60px; }
    .service-frame img { height: 300px; }
    .organic-flex { flex-direction: column; text-align: center; gap: 15px; }
    .addons-grid { grid-template-columns: 1fr; gap: 20px; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
    .gallery-item.large { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .premium-form { padding: 30px; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .hero-impact { min-height: auto; padding-bottom: 60px; }
    .main-title { font-size: 2.5rem; }
    .results-grid-three, .testimonials-grid, .footer-content { grid-template-columns: 1fr; }
    .timeline-line { display: none; }
    .timeline-steps { flex-direction: column; gap: 30px; }
    .top-bar { display: none; }
    .eco-floating-card { right: 0; bottom: 20px; }
    .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .whatsapp-btn i { font-size: 30px; }
    .tooltip-text { display: none; }
    .referral-content { flex-direction: column; text-align: center; gap: 30px; }
    .modal-content { margin: 20% auto; padding: 30px 20px; }
}

@media (max-width: 600px) {
    .footer-top-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 20px; }
    .brand-desc { margin: 0 auto; }
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .gallery-item.wide { grid-column: span 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- ESTILO FACEBOOK REVIEW --- */
.fb-style {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 16px !important;
    text-align: left !important;
    border: 1px solid #dddfe2;
}

.fb-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.fb-user-info {
    display: flex;
    gap: 10px;
}

.fb-avatar {
    width: 40px;
    height: 40px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.fb-user-text strong {
    display: block;
    color: #050505;
    font-size: 0.95rem;
}

.fb-user-text span {
    font-size: 0.85rem;
    color: #65676b;
}

.fb-user-text small {
    display: block;
    color: #65676b;
    font-size: 0.75rem;
}

.fb-icon-corner {
    color: #1877F2;
    font-size: 1.2rem;
}

.fb-content p {
    font-size: 0.9rem;
    color: #050505;
    line-height: 1.5;
    margin-top: 10px;
}

.btn-fb-official {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877F2;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

/* --- ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- POP-UP CENTRAL --- */
.promo-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}

.promo-modal.show-modal { display: flex; }

.promo-content {
    background: white;
    width: 90%; max-width: 400px;
    padding: 40px; border-radius: 20px;
    text-align: center; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-top: 6px solid #339d92;
}

.promo-minimize {
    position: absolute; top: 15px; right: 20px;
    font-size: 24px; color: #999; cursor: pointer;
}

/* --- ETIQUETA FLOTANTE (RECUERDO) --- */
.promo-reminder {
    position: fixed;
    bottom: 30px;
    left: -150px; /* Escondido por defecto */
    background: #339d92;
    color: white;
    padding: 12px 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 5px 5px 15px rgba(51, 157, 146, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Cuando se activa, sale de la izquierda */
.promo-reminder.show-reminder {
    left: 0;
}

.promo-reminder:hover {
    padding-left: 30px;
    background: #41aca4;
}

.promo-tag { color: #339d92; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; }
.mint-text { color: #339d92; font-style: italic; }
.promo-code { background: #f4f9f8; border: 2px dashed #339d92; padding: 10px; margin: 15px 0; border-radius: 8px; }

.btn-promo-action {
    display: block; background: #339d92; color: white !important;
    text-decoration: none; padding: 12px; border-radius: 8px;
    font-weight: 700; text-transform: uppercase; transition: 0.3s;
}
.btn-promo-action:hover { transform: translateY(-2px); }
/* Animación sutil para la pestaña recordatoria */
@keyframes pulse-teal {
    0% { box-shadow: 0 0 0 0 rgba(51, 157, 146, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(51, 157, 146, 0); }
    100% { box-shadow: 0 0 0 0 rgba(51, 157, 146, 0); }
}

.promo-reminder.show-reminder {
    left: 0;
    animation: pulse-teal 2s infinite; /* Brillo constante pero suave */
}