/* --- ESTILOS GLOBALES Y UNIFICADOS --- */
        html {
    scroll-behavior: smooth;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0f2c5c;
            --text-gray: #4b5563;
            --color-abundancia: #00a86b;
            --color-ansiedad: #4a90e2;
            --color-calma: #6c5ce7;
            --color-felicidad: #e94e77;
            --color-manifestacion: #f39c12;
            --color-meditacion: #16a085;
        }

        body {
            font-family: "Inter", sans-serif;
            background: #fff;
            color: #333;
            overflow-x: hidden;
            line-height: 1.5;
        }

        /* --- ESTILOS SECCIÓN HERO --- */
        .top-nav {
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            top: 0;
            z-index: 2000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 20px;
            color: #1d0333;
            text-decoration: none;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #6b4eff, #ff6a00);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #1d0333 0%, #580888 50%, #1d0333 100%);
            background-size: 200% 200%;
            animation: bgAnim 10s ease-in-out infinite;
            display: flex;
            align-items: center;
            padding: 120px 8% 80px;
            gap: 50px;
            position: relative;
            overflow: hidden;
            
        }
         /* Tu animación solicitada */
        @keyframes bgAnim { 
            0% { background-position: 0% 0%; } 
            50% { background-position: 100% 100%; } 
            100% { background-position: 0% 0%; } 
        }

        .hero-content {
            flex: 1;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .cta-btn {
            background: linear-gradient(to right, #ff9d30, #ff6400);
            color: white;
            padding: 18px 35px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;    /* Permite que respete el padding y el ancho */
    text-decoration: none;    /* Quita el subrayado azul de los enlaces */
    box-sizing: border-box;   /* Asegura que el padding no "infle" el botón */
        }

      .hero-right {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 1/1;
        }

        .card img { width: 100%; height: 100%; object-fit: cover; }

        .card span {
            position: absolute;
            bottom: 12px;
            left: 12px;
            padding: 6px 12px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 8px;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            color: white;
        }


        @media (max-width: 900px) {
            .hero-section { flex-direction: column; padding-top: 100px; }
            .hero-right { display: none; }
            .cta-btn{padding:10px 27px; text-align: center;}
            .hero-content h1 {
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .hero-content p {
            margin-bottom: 45px;
        }

        }
        /* --- ESTILOS SECCIÓN SOLO BENEFICIOS --- */
        .wellbeing-section {
            padding: 80px 5%;
            background-color: #ffffff;
            text-align: center;
        }

        .wellbeing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .wellbeing-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .wellbeing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: transparent;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            background: #f8fafc;
            transition: transform 0.3s ease;
        }

        .wellbeing-card:hover .icon-circle { transform: scale(1.1) rotate(5deg); }
        .icon-circle svg { width: 35px; height: 35px; stroke-width: 2; }

        .wellbeing-card h3 { font-size: 22px; color: var(--primary-blue); margin-bottom: 15px; font-weight: 800; }
        .wellbeing-card p { color: var(--text-gray); line-height: 1.6; font-size: 16px; }

/* --- ESTILOS SECCIÓN TESTIMONIOS (MANTENIENDO TU DISEÑO) --- */
    .testimonials-section { 
        padding: 40px 5%; 
        background: #fdfdfd; 
        overflow: hidden; 
        position: relative;
    }
    .testimonials-header { text-align: center; margin-bottom: 30px; }
    .testimonials-header h2 { font-size: clamp(24px, 4vw, 32px); color: #1d0333; font-weight: 800; }
    
    .testimonials-container { 
        position: relative; 
        max-width: 1200px; 
        margin: 0 auto;
        overflow: hidden; /* Oculta lo que sobresale para el slider */
    }
    
    .testimonials-track { 
        display: flex; 
        transition: transform 0.5s ease-in-out; 
        gap: 20px;
        cursor: grab;
    }
    
    .testimonial-card {
        /* En escritorio muestra 3, en tablet 2, en móvil 1 */
        min-width: calc(33.333% - 14px);
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        user-select: none;
    }

    .testimonial-text { font-size: 16px; color: #444; line-height: 1.6; font-style: italic; margin-bottom: 20px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
    .author-info h4 { font-size: 15px; color: #1d0333; font-weight: 700; }
    .stars { margin-top: 5px; }
    .star-svg { width: 80px; height: 14px; fill: #ffcc00; }

    /* Controles del Slider */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    .dot {
        width: 10px;
        height: 10px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }
    .dot.active {
        background: #6b4eff;
        transform: scale(1.2);
    }

    @media (max-width: 1024px) { 
        .testimonial-card { min-width: calc(50% - 10px); } 
    }
    @media (max-width: 768px) { 
        .testimonial-card { min-width: 100%; } 
    }
     /* --- ESTILOS SECCIÓN CTA (OFERTA) --- */
        .offer-section {
            background: white;
            max-width: 1100px;
            margin: 60px auto;
            padding: 60px;
            border-radius: 32px;
            display: flex;
            gap: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            align-items: baseline;
        }

        .offer-content { flex: 1.2; }
        .offer-content h2 { font-size: 38px; color: #1d0333; font-weight: 800; margin-bottom: 25px; line-height: 1.2; }
        
        .pricing-card {
            flex: 0.8;
            background: #ffffff;
            border: 2px solid #6b4eff;
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 35px rgba(107, 78, 255, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        .promo-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6b4eff;
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
        }

        .old-price { font-size: 20px; color: #999; text-decoration: line-through; margin-bottom: 5px; }
        .new-price { font-size: 58px; font-weight: 800; color: #1d0333; margin-bottom: 10px; }
        .new-price span { font-size: 24px; vertical-align: super; }
@media (max-width: 768px) {
    /* El contenedor principal ya no debe tener tanto padding lateral */
    .offer-section {
        flex-direction: column; /* Apilamos contenido arriba y tarjeta abajo */
        padding: 40px 20px;     /* Reducimos de 60px a 20px para ganar espacio */
        margin: 20px 10px;      /* Menos margen exterior */
        gap: 30px;
        align-items: center;    /* Centramos todo */
    }

    .offer-content h2 {
        font-size: 28px;        /* Título más balanceado */
        text-align: center;
    }

    .offer-content ul {
        display: inline-block;  /* Para poder centrar la lista si quieres */
        text-align: left;
    }

    /* AQUÍ ESTÁ EL CAMBIO IMPORTANTE PARA LA TARJETA */
    .pricing-card {
        flex: none;             /* Quitamos el 0.8 de PC */
        width: 100%;            /* Que ocupe todo el ancho del padre */
        max-width: 100%;        /* Sin restricciones */
        padding: 35px 20px;     /* Padding interno más eficiente */
        border-width: 3px;      /* Un poco más grueso el borde para que resalte */
        box-shadow: 0 10px 30px rgba(107, 78, 255, 0.2); /* Sombra más vibrante */
    }

    .new-price {
        font-size: 52px;        /* Un poco más pequeño para que no se rompa el diseño */
    }

    .new-price span {
        font-size: 20px;
    }
}

       /* Estilos para el enlace que simula ser el botón de Mercado Pago */
.cta-link {
    width: 100%;
    background: linear-gradient(to right, #ff9d30, #ff6400);
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px 0;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    margin: 20px 0 10px 0;
    transition: transform 0.2s;
    text-align: center;
    border: none;
}

.cta-link:hover {
    transform: scale(1.02);
}

/* Separador armónico para PayPal */
.payment-separator {
    font-size: 11px;
    color: #bbb;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
/* Contenedor de opciones con animación suave */
#payment-options {
    display: none;
    animation: slideUp 0.5s ease;
    /* Eliminamos el fondo gris y el borde para que no parezca apretado */
    background: transparent; 
    padding: 10px 0; /* Solo un poco de espacio arriba y abajo */
    border: none; /* Quitamos el borde dashed que ensucia la vista */
    margin-top: 15px;
    width: 100%; /* Aseguramos que use todo el ancho */
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botón de Mercado Pago Estilo Moderno */
.mp-button-premium {
    background: #009ee3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Altura fija para que no se deforme */
    padding: 0 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 158, 227, 0.2);
    text-decoration: none;
    margin-bottom: 12px;
}

.mp-button-premium:hover {
    background: #008ad0;
    transform: translateY(-2px);
}

/*.mp-button-premium img {
    filter: brightness(0) invert(1); 
    display: block;
}*/
/* Texto pequeño de ayuda */
.payment-hint {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

        .guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: #444; font-weight: 600; }

        /* --- ESTILOS SECCIÓN FAQ --- */
        .faq-wrapper { background-color: #ffffff; border-radius: 24px; padding: 60px 40px; max-width: 1100px; margin: 40px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .faq-container { display: flex; gap: 60px; }
        .faq-left { flex: 1; }
        .faq-left h2 { font-size: 38px; color: #1d0333; font-weight: 800; margin-bottom: 25px; }
        .faq-right { flex: 1.4; }
        .faq-item { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
        .faq-question { display: flex; align-items: center; justify-content: flex-start; font-size: 18px; font-weight: 700; color: #1d0333; }
        .faq-icon { font-size: 24px; color: #ff6a00; transition: transform 0.3s; padding-right: 10px; }
        .faq-answer { max-height: 0; overflow: hidden; transition: all 0.35s ease; color: #666; font-size: 16px; }
        .faq-item.active .faq-answer { max-height: 300px; padding-top: 15px; }
        .faq-item.active .faq-icon { transform: rotate(45deg); }

        @keyframes shadowPulse {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(3); opacity: 0; }
            100% { transform: scale(1); opacity: 0; }
        }

        @media (max-width: 900px) {
            .offer-section, .faq-container { flex-direction: column; padding: 40px 20px; }
        }
        @media (max-width: 768px) {
    .faq-wrapper {
        padding: 0; /* Esto quita los 60px y 40px por completo */
        border-radius: 0; /* Opcional: si quieres que el fondo blanco toque los bordes */
    }

    .faq-container {
        flex-direction: column; /* Esto hace que el FAQ no se vea amontonado */
        gap: 20px;
    }
}

.final{
    margin-top: 50px; text-align: center; border-top: 1px solid #eee; padding-top: 40px;
}
.final p {
    margin-bottom: 20px; font-weight: 700; color: #333;
}

.botonfinal {
    display: inline-block; background: linear-gradient(to right, #ff9d30, #ff6400); color: white; text-decoration: none; padding: 20px 40px; font-size: 20px; font-weight: 800; border-radius: 16px; box-shadow: 0 4px 15px rgba(255,100,0,0.3);
}

@media (max-width: 768px) {
    .final {
        margin-top: 30px;      /* Reducimos espacio superior */
        padding: 30px 15px;    /* Padding lateral para que no toque los bordes del cel */
        border-top: 1px solid #eee;
    }

    .final p {
        font-size: 16px;       /* Un poco más pequeño para que no grite */
        margin-bottom: 15px;
    }

    .botonfinal {
        display: block;        /* Ocupa todo el ancho disponible */
        width: 100%;           /* Asegura el ancho completo */
        max-width: 320px;      /* Pero que no sea gigante en tablets */
        margin: 0 auto;        /* Centra el bloque */
        padding: 16px 20px;    /* Ajustamos el grosor del botón */
        font-size: 18px;       /* Bajamos de 20px a 18px para que quepa en una línea */
        letter-spacing: 0.5px; /* Mejora la lectura */
        border-radius: 12px;   /* Un radio un poco más sutil para móviles */
    }
}

.palabra {margin-top: 25px;

}

.palabra p {font-size: 15px; opacity: 0.9; margin-top: 5px; color: white;
}
.estrella {
    color: gold; font-size: 22px; 
}
@media (max-width: 768px) {
.palabra p {text-align: center;

}
.estrella { text-align: center;}

}