/**
 * sections.css — Estilos específicos de cada sección del home
 * Hero, Intro, Beneficios, Servicios, Video, Membresías,
 * Testimonios, Ubicaciones, FAQ, CTA, Footer, Modales
 */

        /* Hero Section with Video */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(44, 44, 44, 0.6) 0%, rgba(44, 44, 44, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            color: var(--white);
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-content h1 {
            font-size: 5.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-content .tagline {
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .hero-cta {
            margin-top: 2rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--white);
            font-size: 0.85rem;
            letter-spacing: 2px;
            animation: float 2s ease-in-out infinite;
        }

        .scroll-indicator::after {
            content: '';
            width: 1px;
            height: 40px;
            background: var(--white);
            margin-top: 10px;
            animation: scrollLine 2s ease-in-out infinite;
        }

        /* Introduction Section */
        .intro-section {
            padding: 8rem 4rem;
            background: var(--nude-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .intro-text h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--charcoal);
            line-height: 1.1;
        }

        .intro-text p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--charcoal);
            opacity: 0.85;
            margin-bottom: 1.5rem;
        }

        .intro-image {
            position: relative;
            height: 100%;
            overflow: hidden;
            border-radius: 2px;
        }

        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 8rem 4rem;
            background: var(--white);
            text-align: center;
        }

        .benefits-header {
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .benefits-header h2 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
        }

        .benefits-header p {
            font-size: 1.2rem;
            color: var(--charcoal);
            opacity: 0.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            stroke: var(--rose);
            fill: none;
        }
        
        .benefit-icon svg {
            width: 100%;
            height: 100%;
        }

        .benefit-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .benefit-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--charcoal);
            opacity: 0.75;
        }

        /* Services Section */
        .services-section {
            padding: 8rem 4rem;
            background: var(--nude);
        }

        .services-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .services-header h2 {
            font-size: 4rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 350px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2.5rem;
        }

        .service-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .service-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--charcoal);
            opacity: 0.8;
        }

        /* Video Intermedio */
        /* ── Banner Image Section ─────────────────────────────── */
        .banner-image-section {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .banner-image-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center top;
            background-attachment: fixed;
            transform: scale(1.04);
            transition: transform 0.8s var(--ease-out);
        }
        .banner-image-section:hover .banner-image-bg {
            transform: scale(1);
        }
        .banner-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(35, 32, 32, 0.55) 0%,
                rgba(45, 78, 98, 0.5) 100%
            );
        }
        .banner-image-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 0 2rem;
            max-width: 800px;
        }
        .banner-image-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 6vw, 5rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            font-style: italic;
            color: var(--white);
            margin: 1rem 0 1.5rem;
        }
        .banner-image-content p {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 2vw, 1.3rem);
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.88);
        }

        /* Membership Section */
        .membership-section {
            padding: 8rem 4rem;
            background: var(--white);
        }

        .membership-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .membership-header h2 {
            font-size: 4rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .membership-header p {
            font-size: 1.2rem;
            color: var(--charcoal);
            opacity: 0.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--nude-light);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--rose);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            background: var(--rose);
            color: var(--white);
        }

        .pricing-card.featured .plan-name,
        .pricing-card.featured .price,
        .pricing-card.featured .period {
            color: var(--white);
        }

        .discount-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--terracotta);
            color: var(--white);
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Jost', sans-serif;
            font-weight: 500;
        }

        .price {
            font-size: 3rem;
            font-family: 'Cormorant Garamond', serif;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .period {
            font-size: 1rem;
            color: var(--charcoal);
            opacity: 0.7;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.7rem 0;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .pricing-card.featured .pricing-features li {
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .select-plan-btn {
            background: var(--charcoal);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .select-plan-btn:hover {
            background: var(--terracotta);
            transform: scale(1.05);
        }

        .pricing-card.featured .select-plan-btn {
            background: var(--white);
            color: var(--rose);
        }

        /* Testimonials */
        /* ══════════════════════════════════════════════════
           TESTIMONIOS — 3 cards visibles con fade en bordes
           ══════════════════════════════════════════════════ */
        .testimonials-section {
            padding: clamp(5rem, 10vw, 9rem) 0;
            background: var(--nude-light);
            overflow: hidden;
        }
        .testimonials-header {
            text-align: center;
            margin-bottom: clamp(3rem, 5vw, 5rem);
            padding: 0 var(--gutter);
        }
        .testimonials-header h2 {
            font-size: clamp(2.4rem, 5vw, 4rem);
            color: var(--charcoal);
        }

        /* Stage: ventana con fade en los bordes */
        .testimonials-stage {
            position: relative;
            width: 100%;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(
                to right,
                transparent 0%,
                black 12%,
                black 88%,
                transparent 100%
            );
            mask-image: linear-gradient(
                to right,
                transparent 0%,
                black 12%,
                black 88%,
                transparent 100%
            );
        }

        /* Track: desliza horizontalmente */
        .testimonials-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            padding: 2rem 0 2.5rem;
        }

        /* Card individual — ancho para 3 visibles */
        .testimonial-card {
            width: calc((100vw - 4rem) / 3);
            min-width: calc((100vw - 4rem) / 3);
            flex-shrink: 0;
            background: var(--white);
            border-radius: 6px;
            padding: clamp(2rem, 2.5vw, 3rem);
            box-shadow: 0 4px 40px -8px rgba(44,44,44,0.1);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            box-sizing: border-box;
        }

        /* Comillas SVG */
        .tcard__icon {
            width: 40px;
            height: 40px;
            color: var(--rose-pale);
            flex-shrink: 0;
        }

        /* Texto del testimonio */
        .tcard__text {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-style: italic;
            line-height: 1.8;
            color: var(--charcoal);
            word-wrap: break-word;
            overflow-wrap: break-word;
            flex: 1;
        }

        /* Autor */
        .tcard__author {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--nude);
        }
        .tcard__name {
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--charcoal);
            letter-spacing: 0.02em;
        }
        .tcard__since {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: var(--rose-deep);
            opacity: 0.85;
            letter-spacing: 0.04em;
        }

        /* Navegación: flechas + dots en una fila */
        .testimonials-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            padding: 0 var(--gutter);
        }
        .tnav-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1.5px solid var(--rose);
            background: transparent;
            color: var(--rose);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
            flex-shrink: 0;
        }
        .tnav-btn svg { width: 18px; height: 18px; }
        .tnav-btn:hover {
            background: var(--rose);
            color: var(--white);
            transform: scale(1.08);
            box-shadow: 0 8px 20px -6px var(--glow);
        }
        .carousel-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }
        .carousel-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--nude);
            cursor: pointer;
            transition: all 0.35s var(--ease-out);
            border: none;
        }
        .carousel-dot.active {
            background: var(--rose);
            width: 28px;
            border-radius: 4px;
        }

        /* Mobile — 1 card visible */
        @media (max-width: 900px) {
            .testimonials-stage {
                -webkit-mask-image: linear-gradient(
                    to right, transparent 0%, black 8%, black 92%, transparent 100%
                );
                mask-image: linear-gradient(
                    to right, transparent 0%, black 8%, black 92%, transparent 100%
                );
            }
            .testimonial-card {
                width: calc(100vw - 4rem);
                min-width: calc(100vw - 4rem);
                padding: 2.5rem 2rem;
            }
            .tcard__text { font-size: 1.05rem; }
        }

        .quote-mark {
            font-size: 5rem;
            color: var(--rose-pale);
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
            color: var(--charcoal);
            opacity: 0.85;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--charcoal);
            opacity: 0.6;
        }

        /* Locations */
        .locations-section {
            padding: clamp(5rem, 10vw, 9rem) var(--gutter);
            background: var(--white);
        }

        .locations-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .locations-header h2 {
            font-size: 4rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto 5rem;
        }

        .location-card {
            text-align: center;
            padding: 3rem;
            background: var(--nude-light);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            background: var(--rose-pale);
        }

        .location-card.active {
            background: var(--rose);
            color: var(--white);
        }

        .location-card.active .location-icon svg {
            stroke: var(--white);
        }

        .location-card.active h3,
        .location-card.active p {
            color: var(--white);
        }

        .location-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            stroke: var(--rose);
            fill: none;
        }
        
        .location-icon svg {
            width: 100%;
            height: 100%;
        }

        .location-card h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .location-card p {
            font-size: 1.1rem;
            color: var(--charcoal);
            opacity: 0.7;
            margin-bottom: 0.5rem;
        }

        /* Interactive Map */
        .interactive-map {
            width: 100%;
            height: 550px;
            background: var(--nude-light);
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: var(--shadow-md);
        }

        .interactive-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            transition: opacity 0.5s ease;
        }

        /* Contact Section */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            min-height: 100vh;
        }

        .contact-image {
            position: relative;
            overflow: hidden;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .contact-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 165, 154, 0.2) 0%, rgba(44, 44, 44, 0.3) 100%);
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 4rem;
        }

        .contact-image-text {
            color: var(--white);
            text-align: right;
        }

        .contact-image-text h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .contact-image-text p {
            font-size: 1.2rem;
            opacity: 0.95;
            text-shadow: 0 1px 5px rgba(0,0,0,0.3);
        }

        .contact-form-container {
            background: var(--white);
            padding: 6rem 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form-header {
            margin-bottom: 3rem;
        }

        .contact-form-header h3 {
            font-size: 2.5rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .contact-form-header p {
            font-size: 1.1rem;
            color: var(--charcoal);
            opacity: 0.7;
            line-height: 1.7;
        }

        .contact-form {
            position: relative;
        }

        .contact-form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .contact-form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 500;
            color: var(--charcoal);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-form-group input,
        .contact-form-group textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--nude);
            background: var(--nude-light);
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            position: relative;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: var(--rose);
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 165, 154, 0.15);
        }

        .contact-form-group input:focus + .input-highlight,
        .contact-form-group textarea:focus + .input-highlight {
            width: 100%;
        }

        .contact-form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .input-highlight {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0;
            background: var(--rose);
            transition: width 0.4s ease;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-submit {
            width: 100%;
            padding: 1.3rem;
            background: var(--charcoal);
            color: var(--white);
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .contact-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--rose);
            transition: width 0.6s ease, height 0.6s ease;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .contact-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .contact-submit span {
            position: relative;
            z-index: 1;
        }

        .contact-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 165, 154, 0.4);
        }

        /* Contact Info */
        .contact-info {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--nude);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            opacity: 0.8;
        }

        .contact-info-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--rose);
            flex-shrink: 0;
        }

        .contact-info-item p {
            margin: 0;
            font-size: 1rem;
        }

        /* Responsive Contact Section */
        @media (max-width: 1024px) {
            .contact-section {
                grid-template-columns: 1fr;
            }

            .contact-image {
                min-height: 400px;
            }

            .contact-form-container {
                padding: 4rem 3rem;
            }

            .contact-form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-form-container {
                padding: 3rem 1.5rem;
            }

            .contact-image-text h2 {
                font-size: 2.5rem;
            }

            .contact-form-header h3 {
                font-size: 2rem;
            }
        }

        /* Membership Selection Modal */
        .membership-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 44, 44, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s;
        }

        .membership-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .membership-modal-content {
            background: var(--white);
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            transform: scale(0.9) translateY(30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .membership-modal.active .membership-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .membership-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.8rem;
            color: var(--charcoal);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .membership-modal-close:hover {
            background: var(--rose);
            color: var(--white);
            transform: rotate(90deg);
        }

        .membership-modal-image {
            position: relative;
            min-height: 600px;
            overflow: hidden;
        }

        .membership-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .membership-modal-form {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .membership-modal-header h3 {
            font-size: 2.5rem;
            color: var(--rose);
            margin-bottom: 0.5rem;
        }

        .membership-modal-header .plan-badge {
            display: inline-block;
            background: var(--rose);
            color: var(--white);
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .membership-price-display {
            font-size: 3rem;
            font-family: 'Cormorant Garamond', serif;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .membership-price-period {
            color: var(--charcoal);
            opacity: 0.6;
            margin-bottom: 2rem;
        }

        .membership-benefits {
            background: var(--nude-light);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-left: 3px solid var(--rose);
        }

        .membership-benefits h4 {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .membership-benefits ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .membership-benefits li {
            padding: 0.5rem 0;
            color: var(--charcoal);
            opacity: 0.85;
            position: relative;
            padding-left: 1.5rem;
        }

        .membership-benefits li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--rose);
            font-weight: 600;
        }

        .limited-spots {
            background: linear-gradient(135deg, var(--rose) 0%, var(--terracotta) 100%);
            color: var(--white);
            padding: 1rem 1.5rem;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .membership-form-group {
            margin-bottom: 1.5rem;
        }

        .membership-form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--charcoal);
            font-size: 0.9rem;
        }

        .membership-form-group input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--nude);
            background: var(--nude-light);
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            transition: all 0.3s ease;
        }

        .membership-form-group input:focus {
            outline: none;
            border-color: var(--rose);
            background: var(--white);
        }

        /* Info usuario logueado — solo lectura */
        .membership-user-info {
            background: var(--nude-light);
            border-radius: 6px;
            padding: 1.2rem 1.4rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }
        .membership-user-row {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }
        .membership-user-row svg {
            width: 18px; height: 18px;
            stroke: var(--rose);
            flex-shrink: 0;
        }
        .mui-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--charcoal);
            opacity: 0.5;
            margin-bottom: 1px;
        }
        .mui-value {
            display: block;
            font-size: 0.98rem;
            color: var(--charcoal);
            font-weight: 500;
        }
        /* Fila doble (nombre + apellido) */
        .membership-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 560px) {
            .membership-form-row { grid-template-columns: 1fr; }
        }

        .contact-message {
            background: var(--nude-light);
            padding: 1.5rem;
            border-left: 3px solid var(--rose);
            margin-bottom: 2rem;
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--charcoal);
        }
            padding: 1.2rem;
            background: var(--charcoal);
            color: var(--white);
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }


        }

        /* Confetti Animation */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            position: absolute;
            z-index: 10001;
            pointer-events: none;
        }

        @keyframes confetti-explosion {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 1;
            }
            20% {
                opacity: 1;
            }
            100% {
                transform: translate(var(--tx), var(--ty)) rotate(720deg);
                opacity: 0;
            }
        }

        /* Responsive Membership Modal */
        @media (max-width: 768px) {
            .membership-modal-content {
                grid-template-columns: 1fr;
                max-height: 95vh;
            }

            .membership-modal-image {
                min-height: 300px;
            }

            .membership-modal-form {
                padding: 2.5rem 1.5rem;
            }

            .membership-modal-header h3 {
                font-size: 2rem;
            }

            .membership-price-display {
                font-size: 2.5rem;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 4rem;
            background: var(--nude);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .faq-header h2 {
            font-size: 4rem;
            color: var(--charcoal);
        }

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

        .faq-item {
            background: var(--white);
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--nude-light);
        }

        .faq-question h3 {
            font-size: 1.3rem;
            color: var(--charcoal);
            font-weight: 500;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--rose);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--charcoal);
            opacity: 0.8;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 4rem;
            background: var(--charcoal);
            text-align: center;
            color: var(--white);
        }

        .cta-content h2 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        .primary-btn {
            background: var(--rose);
            color: var(--white);
            padding: 1.2rem 3rem;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            border: 2px solid var(--rose);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .primary-btn:hover {
            background: transparent;
            color: var(--rose);
        }

        .secondary-btn {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 3rem;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            border: 2px solid var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .secondary-btn:hover {
            background: var(--white);
            color: var(--charcoal);
        }

        /* Footer */
        footer {
            background: var(--nude-light);
            padding: 5rem 4rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .footer-brand p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--charcoal);
            opacity: 0.7;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--charcoal);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--rose);
        }
        
        .footer-links li svg {
            stroke: var(--rose);
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--rose-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a svg {
            width: 20px;
            height: 20px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        .social-links a:hover {
            background: var(--rose);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 0.9rem;
            color: var(--charcoal);
            opacity: 0.6;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        @keyframes scrollLine {
            0% {
                height: 0;
            }
            50% {
                height: 40px;
            }
            100% {
                height: 0;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .intro-section,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }

            .intro-section,
            .benefits-section,
            .services-section,
            .membership-section,
            .testimonials-section,
            .locations-section,
            .faq-section,
            .cta-section {
                padding: 4rem 1.5rem;
            }

            .benefits-grid,
            .pricing-grid,
            .locations-grid {
                grid-template-columns: 1fr;
            }

            h2 {
                font-size: 2.5rem !important;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .floating-button {
                min-width: 220px;
                padding: 1rem 2rem;
                font-size: 0.95rem;
                left: 1rem;
            }

            .modal-container {
                width: 95%;
                max-height: 95vh;
            }

            .modal-header {
                padding: 2.5rem 1.5rem 1.5rem;
            }

            .modal-header h2 {
                font-size: 2rem;
            }

            .tab-content {
                padding: 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            /* Mobile Footer Optimizations */
            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-content {
                gap: 2.5rem;
                margin-bottom: 2rem;
            }

            .footer-brand p {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 1rem;
            }

            .footer-links h4 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .footer-links li {
                margin-bottom: 0.6rem;
                font-size: 0.9rem;
            }

            .social-links {
                margin-top: 1rem;
            }

            .social-links a {
                width: 35px;
                height: 35px;
            }

            .social-links a svg {
                width: 18px;
                height: 18px;
            }

            .footer-bottom {
                padding-top: 1.5rem;
                font-size: 0.8rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fixed Floating Button */
        .floating-button {
            position: fixed;
            bottom: -20px;
            left: 2rem;
            z-index: 999;
            background: var(--rose);
            color: var(--white);
            padding: 1.2rem 3rem;
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            box-shadow: 0 -4px 30px rgba(212, 165, 154, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: visible;
            min-width: 280px;
            text-align: center;
            border-radius: 2px 2px 0 0;
        }

        .floating-button:hover {
            bottom: 0;
            box-shadow: 0 -8px 40px rgba(212, 165, 154, 0.6);
            background: var(--terracotta);
        }

        .floating-button-text {
            position: relative;
            display: block;
            height: 1.5rem;
        }

        .floating-button-subtext {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0;
            transition: all 0.4s ease;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .floating-button:hover .floating-button-subtext {
            opacity: 1;
            top: -20px;
        }

        .button-text-rotating {
            animation: textRotate 10s infinite;
        }

        @keyframes textRotate {
            0%, 45% {
                opacity: 1;
                transform: translateX(0);
            }
            50%, 55% {
                opacity: 0;
                transform: translateX(-100%);
            }
            60%, 100% {
                opacity: 0;
                transform: translateX(100%);
            }
        }

        @keyframes textSlideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 44, 44, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease, visibility 1s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Container */
        .modal-container {
            background: var(--white);
            width: 90%;
            max-width: 650px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 2px;
            position: relative;
            transform: scale(0.95) translateY(40px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        /* Modal Close Button */
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--charcoal);
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            color: var(--rose);
            transform: rotate(90deg);
        }

        /* Modal Header */
        .modal-header {
            background: var(--nude-light);
            padding: 3rem 2.5rem 2rem;
            text-align: center;
        }

        .modal-header h2 {
            font-size: 2.8rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .modal-header p {
            font-size: 1rem;
            color: var(--charcoal);
            opacity: 0.7;
        }

        /* Tabs */
        .modal-tabs {
            display: flex;
            background: var(--nude);
            border-bottom: 2px solid var(--rose-pale);
        }

        .tab-button {
            flex: 1;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--charcoal);
            opacity: 0.6;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-button.active {
            opacity: 1;
            background: var(--white);
        }

        .tab-button:hover {
            opacity: 1;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--rose);
        }

        /* Tab Content */
        .tab-content {
            display: none;
            padding: 2.5rem;
        }

        .tab-content.active {
            display: block;
        }

        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, var(--rose) 0%, var(--terracotta) 100%);
            color: var(--white);
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 2px;
        }

        .promo-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .promo-banner p {
            font-size: 0.95rem;
            opacity: 0.95;
            line-height: 1.6;
            font-style: italic;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--charcoal);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid var(--nude);
            background: var(--nude-light);
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--rose);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        /* Submit Button */
        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--charcoal);
            color: var(--white);
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-button:hover {
            background: var(--rose);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 165, 154, 0.3);
        }

        /* Required asterisk */
        .required {
            color: var(--rose);
            margin-left: 3px;
        }

        /* ============================================
           CAPA DE MEJORAS — "EFECTO WOW" (InnovaDatos)
           Nota: variables, grano, tipografía base y navbar
           migrados a main.css y components.css (arquitectura
           modular). Aquí quedan solo estilos de secciones.
           ============================================ */

        ::selection { background: var(--rose); color: #fff; }

        /* ---------- HERO cinematic ---------- */
        .hero-video { filter: saturate(1.05) contrast(1.03); transform: translate(-50%,-50%) scale(1.06); animation: heroDrift 24s ease-in-out infinite alternate; }
        @keyframes heroDrift { to { transform: translate(-50%,-50%) scale(1.14); } }

        .hero-overlay {
            background:
                radial-gradient(120% 90% at 50% 30%, rgba(35,32,32,0.25) 0%, rgba(35,32,32,0.55) 60%, rgba(35,32,32,0.78) 100%),
                linear-gradient(180deg, rgba(63,117,145,0.18) 0%, transparent 40%, rgba(35,32,32,0.35) 100%);
        }
        .hero-grain {
            position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
            background:
                radial-gradient(60% 50% at 50% 45%, rgba(168,201,218,0.10), transparent 70%);
        }
        .hero-content {
            position: relative; z-index: 2; padding: 0 1.5rem;
            display: flex; flex-direction: column; align-items: center;
        }

        /* Isotipo sobre el hero */
        .hero-logo {
            height: clamp(70px, 10vw, 110px);
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.95;
            margin-bottom: 1.8rem;
        }

        .hero-title {
            font-family: 'Fraunces', serif;
            font-weight: 300;
            font-size: clamp(2.8rem, 8.5vw, 7rem);
            line-height: 0.95;
            letter-spacing: -0.02em;
            margin-bottom: 1.4rem;
            display: flex; flex-wrap: wrap; gap: 0 0.32em; justify-content: center;
            color: var(--white);
        }
        .hero-word {
            display: inline-block;
            opacity: 0; transform: translateY(40px) rotate(2deg);
            filter: blur(8px);
            animation: heroWordIn 1.1s var(--ease-out) forwards;
            animation-delay: var(--d);
        }
        /* "Chile" es el acento — mismo tamaño, color de marca, no itálica */
        .hero-word--accent { color: var(--rose-pale); font-weight: 400; }

        @keyframes heroWordIn {
            to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
        }

        /* Firma "un método de Tatiana Libuy" */
        .hero-signature {
            display: flex; align-items: center; justify-content: center;
            gap: 1.2rem; margin-bottom: 1.6rem;
            width: 100%; max-width: 520px;
        }
        .hero-signature__line {
            flex: 1; height: 1px;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.45), transparent);
        }
        .hero-signature__text {
            font-family: 'Jost', sans-serif;
            font-size: clamp(0.85rem, 1.4vw, 1rem);
            font-weight: 300;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.9);
            white-space: nowrap;
        }
        .hero-signature__text em {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.25em;
            font-weight: 500;
            color: var(--white);
            letter-spacing: 0.02em;
        }

        .hero-reveal {
            opacity: 0; transform: translateY(20px);
            animation: heroFadeUp 1s var(--ease-out) forwards;
            animation-delay: var(--d);
        }
        @keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
        .hero-content .tagline {
            font-family: 'Jost', sans-serif;
            letter-spacing: 0.28em; text-transform: uppercase;
            font-size: 0.8rem; color: rgba(255,255,255,0.85);
        }
        .hero-sub {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            letter-spacing: 0.14em; margin-top: 0.4rem;
            text-transform: none !important;
        }

        /* CTA del hero: botón sólido + botón ghost */
        .hero-content .hero-cta {
            display: flex; gap: 1rem; margin-top: 2.2rem;
            flex-wrap: wrap; justify-content: center;
        }
        .hero-content .hero-cta .cta-button { padding: 1rem 2.6rem; font-size: 0.95rem; }
        .cta-ghost {
            display: inline-flex; align-items: center;
            padding: 1rem 2.4rem;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 100px;
            color: var(--white);
            text-decoration: none;
            font-family: 'Jost', sans-serif;
            font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em;
            transition: all 0.4s var(--ease-out);
            backdrop-filter: blur(4px);
        }
        .cta-ghost:hover {
            background: rgba(255,255,255,0.12);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .scroll-indicator { font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.4em; opacity: 0.85; }

        /* ---------- Universal scroll reveal ---------- */
        .fade-in { opacity: 0; transform: translateY(48px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Staggered children reveal */
        .benefits-grid .benefit-card,
        .services-grid .service-card,
        .pricing-grid .pricing-card,
        .locations-grid .location-card {
            opacity: 0; transform: translateY(36px);
            transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
        }
        .visible .benefit-card,
        .visible .service-card,
        .visible .pricing-card,
        .visible .location-card { opacity: 1; transform: translateY(0); }
        .visible .benefit-card:nth-child(1),.visible .service-card:nth-child(1),.visible .pricing-card:nth-child(1),.visible .location-card:nth-child(1){transition-delay:.05s}
        .visible .benefit-card:nth-child(2),.visible .service-card:nth-child(2),.visible .pricing-card:nth-child(2),.visible .location-card:nth-child(2){transition-delay:.13s}
        .visible .benefit-card:nth-child(3),.visible .service-card:nth-child(3),.visible .pricing-card:nth-child(3){transition-delay:.21s}
        .visible .benefit-card:nth-child(4),.visible .pricing-card:nth-child(4){transition-delay:.29s}
        .visible .benefit-card:nth-child(5){transition-delay:.37s}
        .visible .benefit-card:nth-child(6){transition-delay:.45s}

        /* ---------- INTRO section editorial ---------- */
        .intro-section { background: linear-gradient(160deg, var(--nude-light) 0%, #fbf7f2 100%); position: relative; gap: 7rem; }
        .intro-text h2 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
        .intro-text h2 { background: none; }
        .intro-image { border-radius: 4px; box-shadow: var(--shadow-soft); }
        .intro-image::before {
            content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
            border: 1px solid rgba(255,255,255,0.4); margin: 14px; border-radius: 2px;
        }
        .intro-image img { transition: transform 1.2s var(--ease-out); }
        .intro-section:hover .intro-image img { transform: scale(1.05); }
        /* Badge 15+ eliminado — la trayectoria se comunica en la sección Legado */

        /* ---------- BENEFITS premium cards ---------- */
        .benefits-section { background: linear-gradient(180deg, #fbf7f2, var(--white)); }
        .benefits-header h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
        .benefit-card {
            padding: 2.6rem 2rem; border-radius: 8px;
            background: var(--white);
            border: 1px solid rgba(63,117,145,0.08);
        }
        .benefit-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-card);
            border-color: rgba(63,117,145,0.18);
        }
        .benefit-icon {
            width: 64px; height: 64px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(140deg, var(--rose-pale), var(--rose));
            border-radius: 18px; padding: 14px; stroke: #fff;
            box-shadow: 0 14px 30px -12px var(--glow);
            transition: transform 0.5s var(--ease-out);
        }
        .benefit-card:hover .benefit-icon { transform: rotate(-6deg) scale(1.08); }
        .benefit-card h3 { font-size: 1.5rem; }

        /* ---------- SERVICES ---------- */
        .services-section { background: linear-gradient(160deg, var(--nude) 0%, #ded2c6 100%); }
        .services-header h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
        .service-card { border-radius: 8px; box-shadow: 0 20px 50px -34px rgba(40,60,75,0.5); }
        .service-card:hover { transform: translateY(-16px); box-shadow: var(--shadow-card); }
        .service-image { height: 340px; position: relative; }
        .service-image::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(35,32,32,0.45), transparent 55%);
            opacity: 0; transition: opacity 0.5s ease;
        }
        .service-card:hover .service-image::after { opacity: 1; }
        .service-content h3 { font-size: 1.8rem; letter-spacing: -0.01em; }

        /* ---------- BANNER IMAGE SECTION ---------- */
        .banner-image-bg { background-attachment: fixed; }

        /* ---------- MEMBERSHIP ---------- */
        .membership-section { background: radial-gradient(100% 70% at 50% 0%, #fbf7f2, var(--white)); }
        .membership-header h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
        .pricing-card {
            border-radius: 10px; padding: 3.2rem 2rem;
            background: var(--off-white);
            border: 1px solid rgba(63,117,145,0.1);
        }
        .pricing-card:hover { transform: translateY(-14px); box-shadow: var(--shadow-card); border-color: var(--rose); }
        .pricing-card.featured {
            background: linear-gradient(160deg, var(--rose) 0%, var(--rose-deep) 100%);
            box-shadow: 0 30px 70px -30px var(--glow);
            transform: scale(1.04);
        }
        .pricing-card.featured:hover { transform: scale(1.04) translateY(-14px); }
        .price { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 400; }
        .discount-badge { border-radius: 100px; box-shadow: 0 8px 20px -8px rgba(40,60,75,0.4); }
        .select-plan-btn { border-radius: 100px; transition: all 0.4s var(--ease-out); }
        .select-plan-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(40,60,75,0.4); }

        /* ---------- TESTIMONIALS ---------- */
        .testimonials-section { background: linear-gradient(160deg, var(--nude-light), #f0e8df); }
        .testimonials-header h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
        .testimonial-card { border-radius: 6px; }

        /* ---------- LOCATIONS ---------- */
        .locations-section { background: var(--white); }
        .location-card {
            border-radius: 10px; cursor: pointer;
            border: 1px solid rgba(63,117,145,0.1);
            transition: all 0.45s var(--ease-out) !important;
        }
        .location-card:hover, .location-card.active {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card);
            border-color: var(--rose);
        }
        .location-icon { color: var(--rose); transition: transform 0.5s var(--ease-out); }
        .location-card:hover .location-icon { transform: scale(1.12) translateY(-4px); }
        .interactive-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
        #mapFrame { transition: opacity 0.4s ease; }

        /* ---------- FAQ ---------- */
        .faq-item { border-radius: 8px; transition: all 0.4s var(--ease-out); }
        .faq-question h3 { font-family: 'Fraunces', serif; }
        .faq-item.active { box-shadow: var(--shadow-soft); }
        .faq-toggle { transition: transform 0.4s var(--ease-out); }
        .faq-item.active .faq-toggle { transform: rotate(45deg); }

        /* ---------- CTA ---------- */
        .cta-section {
            background:
                radial-gradient(80% 120% at 20% 10%, rgba(111,167,194,0.18), transparent 50%),
                radial-gradient(80% 120% at 90% 90%, rgba(168,201,218,0.2), transparent 50%),
                linear-gradient(160deg, var(--ink), #2f3a40);
            position: relative; overflow: hidden;
        }
        .cta-content h2 { font-family: 'Fraunces', serif; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; letter-spacing: -0.02em; }
        .primary-btn, .secondary-btn { border-radius: 100px; transition: all 0.4s var(--ease-out); }
        .primary-btn:hover, .secondary-btn:hover { transform: translateY(-3px); }

        /* ---------- CONTACT ---------- */
        .contact-form-container { background: linear-gradient(180deg, var(--white), #fbf7f2); }
        .contact-image img { transition: transform 1.4s var(--ease-out); }
        .contact-section:hover .contact-image img { transform: scale(1.06); }

        /* ---------- FOOTER ---------- */
        footer h3 { font-family: 'Fraunces', serif; }

        /* ---------- FLOATING BUTTON glow ---------- */
        .floating-button { box-shadow: 0 18px 40px -12px var(--glow); transition: all 0.4s var(--ease-out); }
        .floating-button:hover { transform: translateY(-3px) scale(1.03); }

        /* ---------- MODALS polish ---------- */
        .modal-container, .membership-modal-content { border-radius: 16px; box-shadow: 0 40px 100px -30px rgba(20,30,38,0.6); }
        .modal-header h2 { font-family: 'Fraunces', serif; }

        /* ---------- Reduced motion ---------- */
        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
            .hero-word, .hero-reveal, .fade-in { opacity: 1 !important; transform: none !important; filter: none !important; }
        }

        /* ---------- Mobile refinements ---------- */
        @media (max-width: 900px) {
            .intro-section { gap: 3rem; padding: 5rem 1.5rem; }
            .benefits-section, .services-section, .membership-section, .testimonials-section { padding: 5rem 1.5rem; }
            .hero-title { gap: 0 0.25em; }
        }


/* ═══════════════════════════════════════════════════════════════════════════
   LEGACY / TRAYECTORIA — sección de legado de Tatiana Libuy
   Fondo oscuro para dar peso, solemnidad y diferenciación.
   ═══════════════════════════════════════════════════════════════════════════ */
        .legacy {
            background: var(--ink);
            color: var(--white);
            padding: clamp(5rem, 10vw, 9rem) var(--gutter);
            position: relative;
            overflow: hidden;
        }
        /* Halo de luz sutil detrás */
        .legacy::before {
            content: '';
            position: absolute;
            top: -20%; right: -10%;
            width: 55%; height: 90%;
            background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
            opacity: 0.5;
            pointer-events: none;
        }
        .legacy__inner {
            position: relative;
            max-width: var(--container);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }

        /* ─── Media (foto + badge) ─────────────────────────────── */
        .legacy__media {
            position: relative;
        }
        .legacy__photo {
            position: relative;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: var(--shadow-lg);
        }
        .legacy__photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(35,32,32,0.45) 100%);
        }
        .legacy__photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center 25%;
            transition: transform 1.2s var(--ease-out);
        }
        .legacy:hover .legacy__photo img { transform: scale(1.04); }

        /* Badge flotante "20+ años" */
        .legacy__badge {
            position: absolute;
            bottom: -28px; right: -28px;
            width: 150px; height: 150px;
            border-radius: 50%;
            background: var(--rose);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 20px 50px -15px rgba(111,167,194,0.6);
            border: 3px solid var(--ink);
        }
        .legacy__badge-num {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 500;
            line-height: 1;
            color: var(--white);
        }
        .legacy__badge-num span { font-size: 1.6rem; vertical-align: super; }
        .legacy__badge-label {
            font-family: var(--font-sans);
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.92);
            margin-top: 0.2rem;
            line-height: 1.3;
        }

        /* ─── Contenido ────────────────────────────────────────── */
        .legacy__content .eyebrow { color: var(--rose-pale); }
        .legacy__title {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3.6vw, 3.1rem);
            font-weight: 300;
            line-height: 1.12;
            letter-spacing: -0.015em;
            margin-bottom: 1.6rem;
            color: var(--white);
        }
        .legacy__title em {
            font-style: italic;
            color: var(--rose-pale);
        }
        .legacy__lead {
            font-size: 1.08rem;
            line-height: 1.85;
            color: rgba(255,255,255,0.8);
            max-width: 60ch;
            margin-bottom: 2.8rem;
        }

        /* ─── Grid de estadísticas ─────────────────────────────── */
        .legacy__stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.8rem;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.12);
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }
        .legacy__stat {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .legacy__stat-num {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 2.4vw, 2.1rem);
            font-weight: 500;
            color: var(--rose-pale);
            line-height: 1;
        }
        .legacy__stat-label {
            font-family: var(--font-sans);
            font-size: 0.82rem;
            font-weight: 300;
            letter-spacing: 0.02em;
            color: rgba(255,255,255,0.65);
            line-height: 1.35;
        }

        /* ─── CTA ──────────────────────────────────────────────── */
        .legacy__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--white);
            text-decoration: none;
            font-family: var(--font-sans);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            padding-bottom: 4px;
            border-bottom: 1.5px solid var(--rose);
            transition: gap 0.35s var(--ease-out), color 0.3s ease;
        }
        .legacy__cta svg {
            width: 20px; height: 20px;
            transition: transform 0.35s var(--ease-out);
        }
        .legacy__cta:hover { gap: 1.1rem; color: var(--rose-pale); }
        .legacy__cta:hover svg { transform: translateX(4px); }

        /* ─── Responsive ───────────────────────────────────────── */
        @media (max-width: 900px) {
            .legacy { padding: 5rem 1.5rem; }
            .legacy__inner { grid-template-columns: 1fr; gap: 4rem; }
            .legacy__media { max-width: 400px; margin: 0 auto; width: 100%; }
            .legacy__badge {
                width: 120px; height: 120px;
                bottom: -20px; right: -12px;
            }
            .legacy__badge-num { font-size: 2.2rem; }
            .legacy__stats { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.5rem; }
        }
        @media (max-width: 480px) {
            .legacy__stats { grid-template-columns: repeat(2, 1fr); }
            .legacy__title { font-size: 1.8rem; }
        }

/* ═══════════════════════════════════════════════════════════════════════════
   DOS CAMINOS — bifurcación Clases vs Formación
   Split screen inmersivo con hover que intensifica cada lado.
   ═══════════════════════════════════════════════════════════════════════════ */
        .paths {
            padding: clamp(5rem, 9vw, 8rem) var(--gutter) 0;
            background: var(--off-white);
        }
        .paths__header {
            max-width: 720px;
            margin: 0 auto clamp(3rem, 5vw, 4.5rem);
            text-align: center;
        }
        .paths__title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            color: var(--ink);
        }
        .paths__subtitle {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--charcoal);
            opacity: 0.72;
        }

        /* ─── Grid de los dos caminos ──────────────────────────── */
        .paths__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 620px;
        }

        .path {
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: clamp(2.5rem, 4vw, 4rem);
            overflow: hidden;
            text-decoration: none;
            min-height: 620px;
            isolation: isolate;
        }

        /* Imagen de fondo */
        .path__image {
            position: absolute;
            inset: 0;
            z-index: -2;
        }
        .path__image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 1.4s var(--ease-out);
        }
        .path:hover .path__image img { transform: scale(1.06); }

        /* Overlay de color */
        .path__overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            transition: opacity 0.6s var(--ease-out);
        }
        .path--clases .path__overlay {
            background: linear-gradient(180deg,
                rgba(44,44,44,0.15) 0%,
                rgba(44,44,44,0.35) 45%,
                rgba(44,44,44,0.82) 100%);
        }
        .path--formacion .path__overlay {
            background: linear-gradient(180deg,
                rgba(35,42,48,0.25) 0%,
                rgba(45,78,98,0.5) 45%,
                rgba(20,32,40,0.9) 100%);
        }
        .path:hover .path__overlay { opacity: 0.88; }

        /* Contenido */
        .path__content {
            position: relative;
            z-index: 1;
            color: var(--white);
            max-width: 420px;
            transform: translateY(12px);
            transition: transform 0.6s var(--ease-out);
        }
        .path:hover .path__content { transform: translateY(0); }

        .path__label {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 100px;
            margin-bottom: 1.3rem;
            backdrop-filter: blur(4px);
        }
        .path__name {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        .path__desc {
            font-size: 1.02rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.88);
            margin-bottom: 1.8rem;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease-out), margin 0.6s var(--ease-out);
        }
        .path:hover .path__desc {
            max-height: 200px;
            opacity: 1;
        }
        .path__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-sans);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--white);
            padding-bottom: 4px;
            border-bottom: 1.5px solid transparent;
            transition: gap 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
        }
        .path__cta svg {
            width: 19px; height: 19px;
            transition: transform 0.35s var(--ease-out);
        }
        .path--clases .path__cta { border-bottom-color: var(--rose-pale); }
        .path--formacion .path__cta { border-bottom-color: var(--rose); }
        .path:hover .path__cta { gap: 1.1rem; }
        .path:hover .path__cta svg { transform: translateX(4px); }

        /* Línea divisoria central sutil */
        .path--clases::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 1px; height: 100%;
            background: rgba(255,255,255,0.12);
            z-index: 2;
        }

        /* ─── Responsive ───────────────────────────────────────── */
        @media (max-width: 860px) {
            .paths { padding: 4rem 1.5rem 0; }
            .paths__grid { grid-template-columns: 1fr; min-height: 0; }
            .path { min-height: 460px; }
            .path--clases::after { display: none; }
            /* En móvil mostramos siempre la descripción (no hay hover) */
            .path__desc { max-height: 200px; opacity: 1; }
            .path__content { transform: translateY(0); }
        }
