        :root {
            /* 🌈 NUEVA PALETA - Más Vibrante y Alegre */

            /* Verde más intenso y fresco */
            --sage: #4CAF76;
            --sage-light: #6ECF94;
            --sage-dark: #2E8B57;
            --sage-pale: rgba(76, 175, 118, 0.12);

            /* Coral/Terracota más vivo */
            --terracota: #FF6B6B;
            --terracota-light: #FF8E8E;
            --terracota-dark: #E85555;
            --terracota-pale: rgba(255, 107, 107, 0.12);

            /* Amarillo/Mostaza más dorado y brillante */
            --mostaza: #FFB703;
            --mostaza-dark: #FB8500;
            --mostaza-pale: rgba(255, 183, 3, 0.15);

            /* Lavanda más vibrante */
            --lavanda: #A855F7;
            --lavanda-pale: rgba(168, 85, 247, 0.12);

            /* NUEVO: Turquesa alegre */
            --turquesa: #06D6A0;
            --turquesa-pale: rgba(6, 214, 160, 0.12);

            /* NUEVO: Rosa energético */
            --rosa: #FF6B9D;
            --rosa-pale: rgba(255, 107, 157, 0.12);

            /* Fondos - más cálidos */
            --cream: #FFFBF5;
            --cream-warm: #FFF8F0;
            --sand: #FFF3E6;
            --white: #FFFFFF;

            /* Textos */
            --charcoal: #1A1A2E;
            --gray-dark: #3D3D5C;
            --gray: #6B7280;
            --gray-light: #9CA3AF;
            --border: #FFE8D6;

            /* Gradientes más dinámicos */
            --gradient-hero: linear-gradient(135deg, #4CAF76 0%, #06D6A0 50%, #FFB703 100%);
            --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFB703 100%);
            --gradient-sage: linear-gradient(135deg, #4CAF76 0%, #06D6A0 100%);
            --gradient-sunset: linear-gradient(135deg, #FFB703 0%, #FF6B6B 50%, #A855F7 100%);
            --gradient-nature: linear-gradient(180deg, #FFFBF5 0%, #E8F8F0 50%, #FFFBF5 100%);
            --gradient-rainbow: linear-gradient(135deg, #FF6B6B 0%, #FFB703 25%, #4CAF76 50%, #06D6A0 75%, #A855F7 100%);

            /* Sombras más refinadas */
            --shadow-soft: 0 4px 20px rgba(76, 175, 118, 0.08);
            --shadow-medium: 0 8px 40px rgba(76, 175, 118, 0.12);
            --shadow-strong: 0 20px 60px rgba(76, 175, 118, 0.15);
            --shadow-warm: 0 8px 30px rgba(255, 107, 107, 0.15);
            --shadow-glow: 0 0 40px rgba(6, 214, 160, 0.25);
            --shadow-rainbow: 0 10px 40px rgba(255, 107, 107, 0.1), 0 0 60px rgba(255, 183, 3, 0.08);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 500;
            line-height: 1.3;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== ICONOS SVG REUTILIZABLES ========== */
        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

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

        .icon-lg svg {
            width: 32px;
            height: 32px;
        }

        .icon-xl svg {
            width: 48px;
            height: 48px;
            stroke-width: 1;
        }

        /* ========== ANIMACIONES ========== */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes floatSlow {

            0%,
            100% {
                transform: translateY(0) rotate(-3deg);
            }

            50% {
                transform: translateY(-8px) rotate(3deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }
        }

        @keyframes glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(123, 168, 137, 0.3);
            }

            50% {
                box-shadow: 0 0 40px rgba(123, 168, 137, 0.5), 0 0 60px rgba(242, 204, 143, 0.3);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Textos interactivos con hover */
        .text-highlight {
            position: relative;
            display: inline;
            transition: all 0.3s ease;
            cursor: default;
        }

        .text-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-warm);
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .text-highlight:hover::after {
            width: 100%;
        }

        .text-highlight:hover {
            color: var(--terracota);
        }

        /* ========== PROMO BAR ========== */
        .promo-bar {
            background: linear-gradient(90deg, #1A1A2E 0%, #2A2A4E 100%);
            padding: 14px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promo-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        .promo-bar-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .promo-bar .icon {
            color: var(--mostaza);
        }

        .promo-bar p {
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }

        .promo-bar .highlight {
            color: var(--mostaza);
            font-weight: 800;
        }

        .promo-bar .countdown {
            display: inline-flex;
            gap: 6px;
        }

        .promo-bar .countdown span {
            background: var(--terracota);
            padding: 5px 10px;
            border-radius: 8px;
            font-family: 'Inter', monospace;
            font-weight: 800;
            font-size: 0.9rem;
            min-width: 36px;
            text-align: center;
            color: white;
        }

        /* ========== HEADER ========== */
        .header {
            background: rgba(255, 255, 255, 0.94);
            border-bottom: 1px solid rgba(232, 228, 220, 0.9);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(16px);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .header .logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .header .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--charcoal);
            font-weight: 500;
            line-height: 0.9;
        }

        .header .logo-text span {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 0.66rem;
            color: #2fb9ad;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            font-weight: 700;
            margin-top: 6px;
        }

        .header-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 34px;
            flex: 1;
        }

        .header-nav a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 700;
            transition: color 0.25s ease;
        }

        .header-nav a:hover {
            color: var(--charcoal);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .header-cta .spots {
            font-size: 0.85rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header-cta .spots strong {
            color: var(--terracota);
        }

        .btn-header {
            background: #2fb9ad;
            color: white;
            padding: 12px 28px;
            border-radius: 100px;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
        }

        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            background: #1f9288;
        }

        @media (max-width: 960px) {
            .header-nav {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .header {
                padding: 14px 0;
            }

            .header .logo-text {
                font-size: 1.55rem;
            }

            .header .logo-text span {
                font-size: 0.58rem;
                letter-spacing: 1.4px;
            }

            .header-cta .spots {
                display: none;
            }

            .btn-header {
                padding: 11px 20px;
                font-size: 0.88rem;
            }
        }

        /* ========== HERO ========== */
        .hero {
            background: var(--gradient-nature);
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 60%;
            height: 160%;
            background: radial-gradient(ellipse, rgba(123, 168, 137, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -20%;
            width: 50%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(242, 204, 143, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Elementos decorativos flotantes con iconos */
        .hero-decoration {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            color: var(--sage);
            opacity: 0.15;
        }

        .hero-decoration.deco-1 {
            top: 15%;
            left: 8%;
            animation: floatSlow 6s ease-in-out infinite;
        }

        .hero-decoration.deco-2 {
            top: 25%;
            right: 10%;
            animation: floatSlow 7s ease-in-out infinite 1s;
            color: var(--mostaza-dark);
        }

        .hero-decoration.deco-3 {
            bottom: 30%;
            left: 5%;
            animation: floatSlow 5s ease-in-out infinite 0.5s;
            color: var(--terracota);
        }

        .hero-decoration.deco-4 {
            bottom: 20%;
            right: 8%;
            animation: floatSlow 8s ease-in-out infinite 2s;
        }

        .hero-decoration svg {
            width: 60px;
            height: 60px;
            stroke-width: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            border: 2px solid var(--sage-light);
            padding: 10px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
        }

        .hero-badge .icon {
            color: var(--sage);
        }

        .hero-badge .icon svg {
            width: 20px;
            height: 20px;
        }

        .hero-badge span {
            font-size: 0.85rem;
            color: var(--sage-dark);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }

        .hero h1 {
            font-size: clamp(2.3rem, 5vw, 3.8rem);
            color: var(--charcoal);
            margin-bottom: 14px;
            font-weight: 500;
        }

        .hero-question {
            font-size: clamp(1.5rem, 3.1vw, 2.2rem);
            color: var(--charcoal);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .hero-question em {
            color: var(--sage-dark);
            font-style: italic;
        }

        .hero-question .text-highlight-hero {
            position: relative;
            display: inline-block;
        }

        .hero-question .text-highlight-hero::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 12px;
            background: var(--mostaza);
            opacity: 0.4;
            z-index: -1;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .hero-question .text-highlight-hero:hover::after {
            height: 100%;
            opacity: 0.3;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--gray-dark);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .hero-subtitle strong {
            color: var(--charcoal);
        }

        .hero-points {
            list-style: none;
            margin-bottom: 32px;
        }

        .hero-points li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 1rem;
            color: var(--gray-dark);
            transition: all 0.3s ease;
        }

        .hero-points li:hover {
            transform: translateX(8px);
            color: var(--charcoal);
        }

        .hero-points li .icon {
            width: 24px;
            height: 24px;
            background: var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            color: white;
        }

        .hero-points li .icon svg {
            width: 14px;
            height: 14px;
            stroke-width: 3;
        }

        @media (max-width: 900px) {
            .hero-points {
                display: inline-block;
                text-align: left;
            }
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        @media (max-width: 900px) {
            .hero-cta-group {
                align-items: center;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 36px;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
            transition: transform 0.3s ease;
        }

        .btn:hover svg {
            transform: translateX(5px);
        }

        .btn-primary {
            background: var(--gradient-warm);
            background-size: 200% 200%;
            color: white;
            box-shadow: var(--shadow-warm);
            animation: gradientFlow 4s ease infinite;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 50px rgba(224, 122, 95, 0.4);
        }

        .btn-large {
            padding: 22px 48px;
            font-size: 1.15rem;
        }

        .hero-guarantee {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--gray);
        }

        @media (max-width: 900px) {
            .hero-guarantee {
                justify-content: center;
            }
        }

        .hero-guarantee span {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .hero-guarantee span:hover {
            color: var(--sage-dark);
        }

        .hero-guarantee .icon {
            color: var(--sage);
        }

        .hero-guarantee .icon svg {
            width: 18px;
            height: 18px;
        }

        /* Hero Media Side */
        .hero-media {
            position: relative;
        }

        .hero-image-main {
            background: var(--white);
            border-radius: 32px;
            padding: 12px;
            box-shadow: var(--shadow-strong);
            position: relative;
            overflow: hidden;
            animation: float 5s ease-in-out infinite;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--sage-pale) 0%, var(--mostaza-pale) 100%);
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }

        .hero-image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-sage);
        }

        .hero-image-placeholder .placeholder-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sage);
            box-shadow: var(--shadow-soft);
        }

        .hero-image-placeholder .placeholder-icon svg {
            width: 40px;
            height: 40px;
            stroke-width: 1;
        }

        .hero-image-placeholder .placeholder-text {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            padding: 0 20px;
        }

        .hero-image-placeholder .placeholder-text strong {
            display: block;
            color: var(--sage-dark);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        /* Floating cards */
        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-medium);
            z-index: 10;
        }

        .hero-float-card.students {
            top: -20px;
            right: -20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite 0.5s;
        }

        .hero-float-card.students .avatars {
            display: flex;
        }

        .hero-float-card.students .avatar {
            width: 36px;
            height: 36px;
            background: var(--gradient-sage);
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: white;
            font-weight: 700;
        }

        .hero-float-card.students .avatar:first-child {
            margin-left: 0;
        }

        .hero-float-card.students .info {
            font-size: 0.8rem;
        }

        .hero-float-card.students .info strong {
            display: block;
            color: var(--sage-dark);
            font-size: 1rem;
        }

        .hero-float-card.rating {
            bottom: 30px;
            left: -10px;
            animation: float 4s ease-in-out infinite 1s;
        }

        .hero-float-card.rating .stars {
            display: flex;
            gap: 2px;
            margin-bottom: 6px;
        }

        .hero-float-card.rating .stars svg {
            width: 18px;
            height: 18px;
            fill: var(--mostaza-dark);
            stroke: var(--mostaza-dark);
        }

        .hero-float-card.rating p {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .hero-float-card.rating p strong {
            color: var(--charcoal);
        }

        @media (max-width: 900px) {
            .hero-float-card.students {
                right: 10px;
                top: -15px;
            }

            .hero-float-card.rating {
                left: 10px;
                bottom: 20px;
            }
        }

        /* ========== IMAGINA SECTION ========== */
        .imagine-section {
            background: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .imagine-section::before {
            content: '';
            position: absolute;
            top: 60px;
            right: 10%;
            width: 120px;
            height: 120px;
            background: var(--sage-pale);
            border-radius: 50%;
            opacity: 0.5;
        }

        .imagine-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .imagine-header h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .imagine-header h2 .icon {
            color: var(--sage);
        }

        .imagine-header h2 em {
            color: var(--sage-dark);
            font-style: italic;
        }

        .imagine-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        @media (max-width: 700px) {
            .imagine-grid {
                grid-template-columns: 1fr;
            }
        }

        .imagine-card {
            background: linear-gradient(135deg, var(--cream-warm) 0%, var(--white) 100%);
            border-radius: 24px;
            padding: 32px;
            border: 2px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .imagine-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-sage);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .imagine-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--sage-light);
        }

        .imagine-card:hover::before {
            opacity: 1;
        }

        .imagine-card .card-icon {
            width: 56px;
            height: 56px;
            background: var(--sage-pale);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--sage-dark);
            transition: all 0.3s ease;
        }

        .imagine-card:hover .card-icon {
            background: var(--sage);
            color: white;
        }

        .imagine-card .card-icon svg {
            width: 28px;
            height: 28px;
        }

        .imagine-card p {
            font-size: 1.1rem;
            color: var(--charcoal);
            line-height: 1.7;
        }

        .imagine-card p strong {
            color: var(--sage-dark);
        }

        /* ========== PARA QUIÉN ========== */
        .for-who-section {
            background: var(--gradient-nature);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--sage-pale);
            color: var(--sage-dark);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .section-tag .icon svg {
            width: 18px;
            height: 18px;
        }

        .section-tag.warm {
            background: var(--terracota-pale);
            color: var(--terracota-dark);
        }

        .section-tag.gold {
            background: var(--mostaza-pale);
            color: var(--mostaza-dark);
        }

        .section-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            color: var(--charcoal);
            margin-bottom: 16px;
        }

        .section-header h2 em {
            color: var(--sage-dark);
            font-style: italic;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
        }

        .for-who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 800px) {
            .for-who-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .for-who-image {
            position: relative;
        }

        .for-who-placeholder {
            background: var(--white);
            border-radius: 32px;
            padding: 16px;
            box-shadow: var(--shadow-medium);
        }

        .for-who-placeholder-inner {
            width: 100%;
            height: 380px;
            background: linear-gradient(135deg, var(--terracota-pale) 0%, var(--mostaza-pale) 100%);
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .for-who-placeholder-inner .placeholder-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--terracota);
            box-shadow: var(--shadow-soft);
        }

        .for-who-placeholder-inner .placeholder-icon svg {
            width: 40px;
            height: 40px;
            stroke-width: 1;
        }

        .for-who-placeholder-inner p {
            color: var(--gray);
            font-size: 0.9rem;
            text-align: center;
            padding: 0 20px;
        }

        .for-who-list {
            list-style: none;
        }

        .for-who-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 24px;
            background: var(--white);
            border-radius: 16px;
            margin-bottom: 12px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: default;
        }

        .for-who-list li:hover {
            transform: translateX(10px);
            border-color: var(--sage);
            box-shadow: var(--shadow-soft);
        }

        .for-who-list li .icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            color: white;
        }

        .for-who-list li .icon svg {
            width: 14px;
            height: 14px;
            stroke-width: 3;
        }

        .for-who-list li span {
            font-size: 1.05rem;
            color: var(--charcoal);
            line-height: 1.5;
        }

        .for-who-list li span strong {
            font-weight: 700;
        }

        /* ========== SOBRE MÍ ========== */
        .about-section {
            background: var(--white);
            padding: 100px 0;
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 800px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .about-image {
            position: relative;
        }

        .about-image-wrapper {
            background: var(--gradient-warm);
            border-radius: 32px;
            padding: 8px;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease;
        }

        .about-image-wrapper:hover {
            transform: rotate(-2deg) scale(1.02);
        }

        .about-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
            border-radius: 26px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .about-placeholder .placeholder-icon {
            width: 100px;
            height: 100px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--terracota);
            box-shadow: var(--shadow-soft);
        }

        .about-placeholder .placeholder-icon svg {
            width: 50px;
            height: 50px;
            stroke-width: 1;
        }

        .about-placeholder p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .about-badge {
            position: absolute;
            bottom: -10px;
            right: -24px;
            background: var(--white);
            border: 3px solid var(--sage);
            padding: 14px 18px;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            text-align: center;
        }

        .about-badge .number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--sage-dark);
            line-height: 1;
        }

        .about-badge .text {
            font-size: 0.62rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }

        @media (max-width: 800px) {
            .about-badge {
                right: 10%;
            }
        }

        .about-content h2 {
            font-size: 2rem;
            margin-bottom: 24px;
            color: var(--charcoal);
        }

        .about-content h2 em {
            color: var(--sage-dark);
            font-style: italic;
        }

        .about-content p {
            font-size: 1.05rem;
            color: var(--gray-dark);
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .about-content .signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--sage-dark);
            font-style: italic;
            margin-top: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 800px) {
            .about-content .signature {
                justify-content: center;
            }
        }

        .about-content .signature .icon {
            color: var(--sage);
        }

        .about-credentials {
            display: flex;
            gap: 16px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        @media (max-width: 800px) {
            .about-credentials {
                justify-content: center;
            }
        }

        .credential {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--sage-pale);
            padding: 12px 18px;
            border-radius: 12px;
        }

        .credential .icon {
            color: var(--sage);
        }

        .credential .icon svg {
            width: 20px;
            height: 20px;
        }

        .credential p {
            font-size: 0.85rem;
            color: var(--sage-dark);
            font-weight: 600;
            margin: 0;
        }

        /* ========== RESULTADOS ========== */
        .results-section {
            background: var(--gradient-sage);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .results-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
        }

        .results-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .results-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .results-header h2 .icon {
            color: var(--mostaza-dark);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .results-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 600px) {
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .result-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 28px 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
        }

        .result-card:hover {
            background: #FFFFFF;
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .result-card .card-icon {
            width: 56px;
            height: 56px;
            background: var(--sage-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--sage-dark);
        }

        .result-card .card-icon svg {
            width: 28px;
            height: 28px;
        }

        .result-card p {
            color: var(--charcoal);
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 700;
        }

        /* ========== 4 PASOS ========== */
        .steps-section {
            background: var(--cream);
            padding: 100px 0;
        }

        .steps-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--sage) 0%, var(--mostaza) 50%, var(--terracota) 100%);
            border-radius: 4px;
        }

        @media (max-width: 600px) {
            .steps-timeline::before {
                left: 24px;
            }
        }

        .step-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 32px;
            margin-bottom: 40px;
            position: relative;
        }

        @media (max-width: 600px) {
            .step-item {
                grid-template-columns: 48px 1fr;
                gap: 20px;
            }
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: var(--shadow-medium);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        @media (max-width: 600px) {
            .step-number {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }
        }

        .step-item:nth-child(1) .step-number {
            color: var(--sage-dark);
            border: 3px solid var(--sage);
        }

        .step-item:nth-child(2) .step-number {
            color: var(--mostaza-dark);
            border: 3px solid var(--mostaza);
        }

        .step-item:nth-child(3) .step-number {
            color: var(--terracota-dark);
            border: 3px solid var(--terracota);
        }

        .step-item:nth-child(4) .step-number {
            color: var(--lavanda);
            border: 3px solid var(--lavanda);
        }

        .step-item:hover .step-number {
            transform: scale(1.1);
        }

        .step-content {
            background: var(--white);
            border-radius: 24px;
            padding: 32px;
            box-shadow: var(--shadow-soft);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .step-item:hover .step-content {
            border-color: var(--sage-light);
            box-shadow: var(--shadow-medium);
        }

        .step-content .step-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .step-item:nth-child(1) .step-icon {
            background: var(--sage-pale);
            color: var(--sage-dark);
        }

        .step-item:nth-child(2) .step-icon {
            background: var(--mostaza-pale);
            color: var(--mostaza-dark);
        }

        .step-item:nth-child(3) .step-icon {
            background: var(--terracota-pale);
            color: var(--terracota-dark);
        }

        .step-item:nth-child(4) .step-icon {
            background: var(--lavanda-pale);
            color: var(--lavanda);
        }

        .step-content .step-icon svg {
            width: 24px;
            height: 24px;
        }

        .step-content h3 {
            font-size: 1.3rem;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .step-content>p {
            font-size: 0.95rem;
            color: var(--gray-dark);
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .step-result {
            background: var(--sage-pale);
            border-radius: 12px;
            padding: 16px 20px;
            border-left: 4px solid var(--sage);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .step-result .icon {
            color: var(--sage);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .step-result .icon svg {
            width: 18px;
            height: 18px;
        }

        .step-result p {
            font-size: 0.9rem;
            color: var(--sage-dark);
            font-weight: 600;
            margin: 0;
        }

        /* ========== TESTIMONIOS CARRUSEL ========== */
        .testimonials-section {
            background: var(--white);
            padding: 100px 0;
            overflow: hidden;
        }

        .testimonials-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, var(--cream-warm) 0%, var(--white) 100%);
            border-radius: 32px;
            padding: 48px;
            border: 2px solid var(--border);
            position: relative;
            text-align: center;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 40px;
            width: 48px;
            height: 48px;
            background: var(--sage-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-card .quote-icon {
            position: absolute;
            top: 32px;
            left: 48px;
            color: var(--sage);
        }

        .testimonial-card .quote-icon svg {
            width: 32px;
            height: 32px;
        }

        .testimonial-card .stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 24px;
        }

        .testimonial-card .stars svg {
            width: 22px;
            height: 22px;
            fill: var(--mostaza-dark);
            stroke: var(--mostaza-dark);
        }

        .testimonial-card .text {
            font-size: 1.25rem;
            color: var(--charcoal);
            line-height: 1.9;
            font-style: italic;
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-card .text strong {
            color: var(--sage-dark);
            font-weight: 700;
            font-style: normal;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .testimonial-info h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            text-align: center;
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 32px;
        }

        .carousel-btn {
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--charcoal);
        }

        .carousel-btn:hover {
            background: var(--sage);
            border-color: var(--sage);
            color: white;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            background: var(--border);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--sage);
            transform: scale(1.2);
        }

        /* ========== CONTENIDO INCLUIDO ========== */
        .content-section {
            background: var(--cream);
            padding: 100px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 800px) {
            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }

        .content-card {
            background: var(--white);
            border-radius: 24px;
            padding: 32px 28px;
            text-align: center;
            border: 2px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-sage);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--sage-light);
        }

        .content-card:hover::before {
            transform: scaleX(1);
        }

        .content-card .card-icon {
            width: 64px;
            height: 64px;
            background: var(--sage-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--sage);
            transition: all 0.3s ease;
        }

        .content-card:hover .card-icon {
            background: var(--sage);
            color: white;
        }

        .content-card .card-icon svg {
            width: 28px;
            height: 28px;
        }

        .content-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 10px;
        }

        .content-card p {
            font-size: 0.9rem;
            color: var(--gray-dark);
            line-height: 1.6;
        }

        /* ========== OFERTA ========== */
        .offer-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, var(--cream-warm) 100%);
            padding: 100px 0;
            text-align: center;
        }

        .offer-card {
            background: var(--white);
            border-radius: 40px;
            padding: 60px 50px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: var(--shadow-strong);
            border: 4px solid var(--sage);
            position: relative;
            overflow: hidden;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: var(--gradient-sage);
        }

        .offer-ribbon {
            position: absolute;
            top: 32px;
            right: -40px;
            background: var(--terracota);
            color: white;
            padding: 10px 50px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            transform: rotate(45deg);
            box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
        }

        .offer-header {
            margin-bottom: 36px;
        }

        .offer-header .header-icon {
            width: 72px;
            height: 72px;
            background: var(--sage-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--sage);
        }

        .offer-header .header-icon svg {
            width: 36px;
            height: 36px;
        }

        .offer-header h2 {
            font-size: 1.8rem;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .offer-header p {
            font-size: 1.05rem;
            color: var(--gray);
        }

        .offer-spots {
            background: var(--cream-warm);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 32px;
            border: 2px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .offer-spots::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-warm);
        }

        .offer-spots .alert-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1.05rem;
            color: var(--charcoal);
            font-weight: 600;
        }

        .offer-spots .alert-text .icon {
            color: var(--terracota);
            background: var(--terracota-pale);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offer-spots .counter {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 24px;
            border-radius: 100px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border);
        }

        .offer-spots .counter span {
            font-size: 0.95rem;
            color: var(--gray-dark);
            font-weight: 700;
        }

        .offer-spots .counter .number {
            background: var(--rosa);
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-family: 'Inter', monospace;
            font-size: 1.4rem;
            font-weight: 800;
            min-width: 44px;
            line-height: 1;
            box-shadow: 0 4px 12px var(--rosa-pale);
        }

        .offer-includes {
            list-style: none;
            text-align: left;
            margin-bottom: 36px;
            background: var(--cream);
            border-radius: 20px;
            padding: 28px 32px;
        }

        .offer-includes li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 1rem;
            color: var(--charcoal);
            transition: all 0.3s ease;
        }

        .offer-includes li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .offer-includes li:hover {
            transform: translateX(8px);
        }

        .offer-includes li .icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .offer-includes li .icon svg {
            width: 14px;
            height: 14px;
            stroke-width: 3;
        }

        .offer-includes li strong {
            font-weight: 700;
        }

        .offer-includes li.bonus {
            background: var(--mostaza-pale);
            margin: 12px -32px;
            padding: 18px 32px;
            border-radius: 12px;
            border-bottom: none;
        }

        .offer-includes li.bonus .icon {
            background: var(--mostaza-dark);
        }

        .offer-pricing {
            margin-bottom: 32px;
        }

        .price-comparison {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .price-original {
            font-size: 1.4rem;
            color: var(--gray-light);
            text-decoration: line-through;
        }

        .price-savings {
            background: var(--terracota);
            color: white;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .price-current {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            color: var(--sage-dark);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
        }

        .price-current sup {
            font-size: 1.8rem;
            vertical-align: super;
        }

        .price-note {
            font-size: 1rem;
            color: var(--gray);
        }

        .offer-cta {
            margin-bottom: 28px;
        }

        .btn-offer {
            width: 100%;
            padding: 24px 40px;
            font-size: 1.2rem;
            border-radius: 100px;
            animation: glow 2s ease-in-out infinite;
        }

        .btn-offer:hover {
            animation: none;
        }

        .offer-security {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .security-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .security-badge .icon {
            color: var(--sage);
        }

        .security-badge .icon svg {
            width: 20px;
            height: 20px;
        }

        /* ========== GARANTÍA ========== */
        .guarantee-section {
            background: var(--white);
            padding: 80px 0;
        }

        .guarantee-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 48px;
            align-items: center;
            background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
            border-radius: 32px;
            padding: 48px;
            border: 2px solid var(--sage-light);
        }

        @media (max-width: 700px) {
            .guarantee-card {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 40px 32px;
            }
        }

        .guarantee-badge {
            width: 180px;
            height: 180px;
            background: var(--gradient-sage);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 0 auto;
            box-shadow: var(--shadow-medium);
            position: relative;
        }

        .guarantee-badge::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 3px dashed var(--sage-light);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }

        .guarantee-badge .days {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
        }

        .guarantee-badge .text {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .guarantee-content h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--charcoal);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        @media (max-width: 700px) {
            .guarantee-content h2 {
                justify-content: center;
            }
        }

        .guarantee-content h2 .icon {
            color: var(--sage);
        }

        .guarantee-content p {
            font-size: 1.05rem;
            color: var(--gray-dark);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        /* ========== FAQ ACORDEÓN ========== */
        .faq-section {
            background: var(--cream);
            padding: 100px 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 20px;
            margin-bottom: 16px;
            border: 2px solid var(--border);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--sage-light);
        }

        .faq-item.active {
            border-color: var(--sage);
            box-shadow: var(--shadow-soft);
        }

        .faq-question {
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.3s ease;
            gap: 16px;
        }

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

        .faq-question h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--charcoal);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .faq-question h4 .icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: var(--sage-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sage);
        }

        .faq-question h4 .icon svg {
            width: 18px;
            height: 18px;
        }

        .faq-question .toggle {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: var(--sage-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--sage-dark);
        }

        .faq-item.active .faq-question .toggle {
            background: var(--sage);
            color: white;
            transform: rotate(180deg);
        }

        .faq-question .toggle svg {
            width: 16px;
            height: 16px;
        }

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

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

        .faq-answer-content {
            padding: 0 28px 24px 78px;
            font-size: 1rem;
            color: var(--gray-dark);
            line-height: 1.8;
        }

        /* ========== CTA FINAL ========== */
        .final-cta {
            background: var(--gradient-sage);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
        }

        .final-cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta-content .cta-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            color: white;
        }

        .final-cta-content .cta-icon svg {
            width: 40px;
            height: 40px;
        }

        .final-cta-content h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
        }

        .final-cta-content>p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
            line-height: 1.75;
        }

        .final-cta-content .quote {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.3rem;
            color: white;
            margin-bottom: 36px;
        }

        .btn-final {
            background: white;
            color: var(--sage-dark);
            padding: 24px 48px;
            font-size: 1.2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-final:hover {
            background: var(--cream);
            transform: translateY(-4px) scale(1.02);
        }

        .final-note {
            margin-top: 28px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--charcoal);
            padding: 60px 0 40px;
            text-align: center;
            color: white;
        }

        .footer .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .footer .logo-icon svg {
            width: 22px;
            height: 22px;
        }

        .footer .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
        }

        .footer p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
        }

        .footer .tagline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.05rem;
        }

        /* ========== STICKY CTA BOTTOM ========== */
        .sticky-cta-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            padding: 16px 24px;
            box-shadow: var(--shadow-strong);
            transform: translateY(100%);
            transition: transform 0.4s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
        }

        .sticky-cta-bottom.visible {
            transform: translateY(0);
        }

        .sticky-cta-bottom .price-info {
            text-align: right;
        }

        .sticky-cta-bottom .price-info .original {
            font-size: 0.9rem;
            color: var(--gray-light);
            text-decoration: line-through;
        }

        .sticky-cta-bottom .price-info .current {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--sage-dark);
            font-weight: 700;
            line-height: 1;
        }

        .sticky-cta-bottom .spots-left {
            font-size: 0.85rem;
            color: var(--terracota);
            font-weight: 700;
        }

        .sticky-cta-bottom .btn {
            padding: 14px 32px;
            font-size: 0.95rem;
        }

        @media (max-width: 600px) {
            .sticky-cta-bottom {
                flex-direction: column;
                gap: 12px;
                padding: 16px 20px;
            }

            .sticky-cta-bottom .price-info {
                text-align: center;
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .sticky-cta-bottom .btn {
                width: 100%;
            }
        }

        /* ========== NOTIFICATION ========== */
        .notification {
            position: fixed;
            bottom: 100px;
            left: 24px;
            background: white;
            border-radius: 16px;
            padding: 18px 22px;
            box-shadow: var(--shadow-strong);
            display: flex;
            align-items: center;
            gap: 14px;
            z-index: 9999;
            max-width: 360px;
            transform: translateX(-120%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid var(--sage);
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification .avatar {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: var(--gradient-sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            font-weight: 700;
        }

        .notification .content p {
            font-size: 0.95rem;
            color: var(--charcoal);
            line-height: 1.4;
        }

        .notification .content p strong {
            color: var(--sage-dark);
        }

        .notification .content .time {
            font-size: 0.8rem;
            color: var(--gray-light);
            margin-top: 4px;
        }

        @media (max-width: 500px) {
            .notification {
                left: 12px;
                right: 12px;
                max-width: calc(100% - 24px);
            }
        }
