/* =========================================
   VARIABLES & TOKENS KAIZEN + REBE HEALTHY
   ========================================= */
@font-face {
    font-family: 'Black Mango';
    src: local('Black Mango'), local('BlackMango');
}

:root {
    /* Color Palette Kaizen */
    --clr-bg: #ffffff;
    --clr-white: #FFFFFF;
    --clr-primary: #293206;
    --clr-secondary: #787D5C;
    --clr-effect: #D2D9BE;

    /* Typography */
    --font-heading: 'Black Mango', 'Playfair Display', serif;
    --font-body: 'Lora', serif;

    /* Spacing Minimalista */
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 100px;
    --spacing-xl: 150px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-primary);
    background-color: var(--clr-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.2;
    /* text-transform: capitalize removido de aquí porque afecta palabras cortas raro, se aplicará capitalize directo a las clases que lo necesiten o se dejará el texto tal cual */
}

h1,
h2 {
    color: var(--clr-secondary);
}

h3,
h4 {
    color: var(--clr-primary);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
}

.container {
    width: 85%;
    max-width: 1100px;
    /* Ancho ajustado para layouts de columnas */
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Backgrounds Primarios */
.bg-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
}

.bg-primary h2,
.bg-primary .text-light,
.bg-primary p,
.bg-primary li {
    color: var(--clr-bg);
}

.section-title {
    font-size: 2.3rem;
    line-height: 0.9;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
}

.eyebrow {
    font-size: 1.2rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

/* =========================================
   BOTONES PREMIUM (Modern 2026)
   ========================================= */
.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--clr-effect);
    color: var(--clr-primary);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(210, 217, 190, 0.2);
}

.cta-button:hover {
    background-color: var(--clr-primary);
    color: var(--clr-effect);
    box-shadow: 0 10px 30px rgba(41, 50, 6, 0.3);
    transform: translateY(-3px);
}

.cta-button.primary {
    background-color: var(--clr-primary);
    color: var(--clr-effect);
}

.cta-button.primary:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(120, 125, 92, 0.4);
}

.cta-button.outline {
    background-color: transparent;
    border: 1px solid var(--clr-effect);
    color: var(--clr-primary);
    box-shadow: none;
}

/* Botón magnético Glow en vez de Pulse agresivo */
.pulse-glow {
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(210, 217, 190, 0.2), 0 0 20px rgba(210, 217, 190, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(210, 217, 190, 0.6), 0 0 40px rgba(210, 217, 190, 0.4);
    }
}

.hero .cta-button.outline {
    color: var(--clr-white);
}

.cta-button.outline:hover {
    background-color: var(--clr-effect);
    color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(210, 217, 190, 0.2);
}

/* Botón Flotante con Glassmorphism (Floating CTA) */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(41, 50, 6, 0.85);
    /* Semitransparente */
    backdrop-filter: blur(10px);
    /* Glassmorphism */
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-effect);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* =========================================
   ANIMATIONS & SCROLL REVEAL 2026
   ========================================= */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

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

/* Delay modifiers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* =========================================
   SECTIONS & LAYOUT (SPLIT GRID)
   ========================================= */
section {
    padding: var(--spacing-lg) 0;
}

/* Split Layouts (Estilo Rebe Healthy) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse .text-container {
    order: 2;
}

.split-layout.reverse .image-container {
    order: 1;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.shadow-light {
    box-shadow: 0 0 30px -14px #2e3028;
}

/* 1. Hero Banner */
.hero {
    position: relative;
    height: 100vh;
    /* Tamaño dinámico inmersivo */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
    z-index: -1;
    transform: scale(1.05);
    /* Ligero zoom para dar profundidad al inicio */
}

.hero-content {
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 6rem;
    /* Kinetic typography, más grande */
    color: var(--clr-effect);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -3px;
}

.hero-content .hook {
    font-size: 1.9rem;
    font-family: var(--font-body);
    color: var(--clr-white);
    margin-bottom: var(--spacing-md);
    font-weight: bold;

}

.special-text {
    font-style: italic;
}



.special-text-w {
    font-weight: bold;
    font-style: italic;
}

/* 2. Listas Elegantes (Sin Íconos) */
.clean-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.clean-list.left-aligned {
    text-align: left;
    margin: 0;
}

.clean-list li {
    font-size: 1.6rem;
    padding: 1.2rem 0;
    /* border-bottom: 1px solid rgba(120, 125, 92, 0.15); */
    position: relative;
    padding-left: 2rem;
    line-height: 1.2;
}

/* Viñeta minimalista (círculo) */
.clean-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.8rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-effect);
}

.clean-list.list-light li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.clean-list.list-light li::before {
    /* background-color: var(--clr-bg); */
}

.clean-list li:last-child {
    border-bottom: none;
}

/* 4. Program Description */
.program-desc {
    background-image: url('../images/program_desc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    /* Efecto parallax sutil */
    /* Overlay oscuro negro para que resalte la imagen y el texto claro */
    background-color: rgba(0, 0, 0, 0.65);
    background-blend-mode: overlay;
    padding: var(--spacing-xl) 0;
}

.desc-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.vip-notice {
    margin-top: var(--spacing-md);
    padding: 3rem;
    background-color: var(--clr-white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-notice p,
.bg-primary .vip-notice p {
    color: var(--clr-primary);
    /* Forzar color oscuro para que no se pierda en el fondo blanco */
}

/* 5. Modules */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.modules-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.module-card {
    padding: 4rem;
    background-color: var(--clr-white);
    border: solid 1px #49512b29;
    border-radius: 10px;
    box-shadow: 0 0 20px 10px rgb(74 74 74 / 7%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(41, 50, 6, 0.08);
}

.module-card h3 {
    font-size: 2.8rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

.module-card h4 {
    font-size: 1.3rem;
    color: var(--clr-primary);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: bold;
}

.module-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(120, 125, 92, 0.15);
}

.class-list {
    list-style: none;
}

.class-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--clr-effect);
    line-height: 1.8;
    font-size: 1.15rem;
}

.class-list li strong {
    display: block;
    color: var(--clr-primary);
    margin-bottom: 0.2rem;
}

/* 6. Results */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.result-item {
    font-size: 1.3rem;
    padding: 2rem;
    background-color: var(--clr-white);
    border-radius: 24px;
    font-family: var(--font-body);
    color: var(--clr-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* 8. Testimonials Carousel */
.testimonials-section {
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 3rem 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 450px;
    margin: 0 2rem;
    padding: 3rem;
    background-color: var(--clr-white);
    border-radius: 30px;
    /* box-shadow: 0 15px 50px rgba(41, 50, 6, 0.06); */
    white-space: normal;
    text-align: left;
    display: flex;
    box-shadow: 0 0 20px -11px rgb(141 147 120);
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {

    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    color: var(--clr-secondary);
    font-size: 1.2rem;
    margin-bottom: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* 9. FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(120, 125, 92, 0.2);
    margin-bottom: 1.5rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
    color: var(--clr-secondary);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--clr-secondary);
    font-size: 1.1rem;
}

/* 10. Closing Offer */
.closing-card {
    background-color: var(--clr-white);
    padding: 5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

/* Footer */
.site-footer {
    padding: var(--spacing-md) 0;
    background-color: var(--clr-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(120, 125, 92, 0.2);
}

.footer-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--clr-secondary);
}

.social-links a {
    color: var(--clr-primary);
    font-size: 2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--clr-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-layout.reverse .text-container {
        order: 1;
    }

    .split-layout.reverse .image-container {
        order: 2;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .clean-list li {
        font-size: 1.4rem;
    }

    .hero {
        height: 100vh;
        /* Mantener inmersivo */
        min-height: 600px;
    }

    .hero-bg {
        /* Rectangular */
        border-radius: 0;
    }

    section {
        padding: 4rem 0;
    }

    .module-card {
        padding: 2rem;
    }

    .testimonial-card {
        width: 320px;
        padding: 2rem;
        margin: 0 1rem;
    }

    .cta-button {
        padding: 1.2rem 2rem;
        width: 100%;
        margin: 0.5rem 0;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .floating-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }
}

/* cta */

/* ============================
   WILDISH-LIKE CTA (KB) - SIN BOTÓN
   - Texto centrado
   - Full width (frase/CTA)
   - Nota urgente destacada
   - Redes visibles en responsive
   ============================ */

.kb-wildCta {
    position: relative;
    min-height: clamp(460px, 32vh, 860px);
    background: #0b0d12;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-image: url(../images/program_desc.png);

}

/* Fondo animado */
.kb-wildCta__bg {
    position: absolute;
    inset: -25%;
    z-index: 0;

    opacity: .95;
    transform: translate3d(0, 0, 0);
    animation: kbBgFloat 10s ease-in-out infinite alternate;
}

.kb-wildCta::after {
    content: "";
    position: absolute;
    inset: -30%;
    z-index: 0;
    background:
        radial-gradient(800px 520px at 55% 35%, rgba(255, 110, 80, .25), transparent 55%),
        radial-gradient(700px 600px at 85% 70%, rgba(255, 210, 160, .18), transparent 60%);
    filter: blur(90px);
    opacity: .7;
    transform: translate3d(0, 0, 0);
    animation: kbBgFloat2 13s ease-in-out infinite alternate;
}

/* Vignette */
.kb-wildCta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(900px 520px at 40% 30%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .86));
    pointer-events: none;
}

@keyframes kbBgFloat {
    0% {
        transform: translate3d(-2%, -2%, 0) scale(1.03);
    }

    60% {
        transform: translate3d(2%, -1%, 0) scale(1.07);
    }

    100% {
        transform: translate3d(1%, 2%, 0) scale(1.10);
    }
}

@keyframes kbBgFloat2 {
    0% {
        transform: translate3d(2%, 1%, 0) scale(1.02);
    }

    55% {
        transform: translate3d(-1%, 2%, 0) scale(1.06);
    }

    100% {
        transform: translate3d(-2%, -1%, 0) scale(1.09);
    }
}

/* Top bar */
.kb-wildCta__top {
    position: absolute;
    inset: 22px 28px auto 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.kb-wildCta__brand {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    pointer-events: auto;
}

/* Rail + redes */
.kb-wildCta__rail {
    position: absolute;
    inset: 90px auto 40px 28px;
    width: 58px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kb-wildCta__railLine {
    width: 1px;
    height: 110px;
    background: rgba(255, 255, 255, .20);
}

.kb-wildCta__railLine--short {
    height: 70px;
}

.kb-wildCta__railBottom {
    display: grid;
    gap: 18px;
    justify-items: center;
}

.kb-wildCta__social {
    display: grid;
    gap: 14px;
}

.kb-wildCta__socialLink {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .80);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    transition: transform .2s ease, color .2s ease, background .2s ease;
}

.kb-wildCta__socialLink:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, .10);
}

/* ============================
   CONTENIDO CENTRADO + FULL WIDTH
   ============================ */
.kb-wildCta__container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    /* ✅ casi full width */
    margin: 0 auto;
    padding: clamp(96px, 11vh, 140px) 28px 72px 110px;
    /* deja espacio al rail */
    display: flex;
    justify-content: center;
    align-items: center;
}

.kb-wildCta__content {
    width: 100%;
    text-align: center;
    /* ✅ centrado */
}

/* ✅ título más pequeño + ancho (menos saltos) */
.kb-wildCta__title {
    margin: 0 auto;
    max-width: 52ch;
    /* ✅ más frase */
    color: #fff;
    font-size: clamp(28px, 3.3vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 400;
}

/* ✅ letras blancas todo */
.kb-wildCta__body {
    margin: 18px auto 0 auto;
    max-width: 88ch;
    /* ✅ más ancho */
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.kb-wildCta__body p {
    margin: 0 0 12px 0;
}

.kb-wildCta__body strong {
    color: #fff;
    font-weight: 900;
}

/* ✅ urgencia destacada */
.kb-wildCta__note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .55), 0 0 60px rgba(156, 39, 176, .18);
}


/* ====================================================
   RESPONSIVE: redes visibles (barra horizontal abajo)
   ==================================================== */
@media (max-width: 991.98px) {

    .kb-wildCta__container {
        padding: 90px 20px 90px 20px;
        /* bottom extra para redes */
    }

    /* redes visibles abajo */
    .kb-wildCta__rail {
        display: flex;
        position: absolute;
        inset: auto 16px 16px 16px;
        width: auto;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        z-index: 5;
    }

    .kb-wildCta__railBottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .kb-wildCta__railLine--short {
        display: none;
    }

    .kb-wildCta__social {
        display: flex;
        flex-direction: row;
        gap: 12px;
    }

    .kb-wildCta__title {
        max-width: 22ch;
    }

    /* mantiene look impactante */
    .kb-wildCta__body {
        max-width: 70ch;
    }
}

@media (max-width: 575.98px) {
    .kb-wildCta__top {
        inset: 16px 16px auto 16px;
    }

    .kb-wildCta__rail {
        inset: auto 12px 12px 12px;
    }

    .kb-wildCta__socialLink {
        width: 40px;
        height: 40px;
    }

    .kb-wildCta__title {
        font-size: 20px !important;
        line-height: 1.1;
        max-width: 40ch;
    }

    .txt-color-cta {
        color: #fff;
        font-size: 20px !important;
    }

    .kb-wildCta__note {
        font-weight: 400 !important;
        font-size: 12px !important;

    }
}

.txt-color-cta {
    color: #fff;
    font-size: 18px;
}





/* kaizen offer 2 */


/* ===========================
   KAIZEN OFFER (FULL WIDTH)
   No usa .parallax
   =========================== */

/* 1) Sección full width con parallax */
.kaizen-offer2 {
    position: relative;
    width: 100%;
    padding: clamp(48px, 6vw, 92px) 0;

    /* ✅ Fondo (PARALLAX) - CAMBIÁ ESTA RUTA */
    background-image: url(../imgs/angi/oferta2.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

/* Overlay para contraste */
.kaizen-offer2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 380px at 20% 30%, rgba(255, 255, 255, .10), transparent 55%),
        linear-gradient(90deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .38));
    pointer-events: none;
}

/* 2) Contenedor card split */
.kaizen-offer2__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border-radius: 26px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

/* 3) Media lado izquierdo */
.kaizen-offer2__media {
    position: relative;

    /* ✅ Foto lado izquierdo - CAMBIÁ ESTA RUTA */
    background-image: url(../imgs/angi/oferta2.png);
    background-size: cover;
    background-position: center;
}

/* Sombreado suave para dar profundidad */
.kaizen-offer2__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .24) 0%, rgba(0, 0, 0, .10) 60%, rgba(0, 0, 0, 0) 100%);
}

/* 4) Panel derecho (tono cálido) */
.kaizen-offer2__side {
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(16px, 2.2vw, 28px);
    background: linear-gradient(135deg,
            rgba(205, 151, 120, .58),
            rgba(65, 52, 44, .58));
}

/* Línea divisoria vertical como la referencia */
.kaizen-offer2__side::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .25);
}

/* 5) Glass panel */
.kaizen-offer2__glass {
    width: 100%;
    border-radius: 22px;
    padding: clamp(18px, 2.2vw, 28px);

    background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow: 0 18px 55px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .35);

    backdrop-filter: blur(22px) saturate(155%);
    -webkit-backdrop-filter: blur(22px) saturate(155%);
}

/* Fallback si no hay backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .kaizen-offer__glass {
        background: rgba(255, 255, 255, .18);
    }
}

/* 6) Tipografías */
.kaizen-offer2__brand {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 10px;
}

.kaizen-offer2__title {
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.08;
    color: #fff;
    margin: 0 0 14px 0;
}

.kaizen-offer2__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: baseline;
    margin: 0 0 14px 0;
}

.kaizen-offer2__before {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
}

.kaizen-offer2__before strong {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: .85;
}

.kaizen-offer2__now {
    color: #fff;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .22);
}

.kaizen-offer2__now strong {
    font-size: 18px;
}

.kaizen-offer2__subtitle {
    margin: 10px 0 10px 0;
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
}

/* 7) Lista */
.kaizen-offer2__list {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.kaizen-offer2__list li {
    color: rgba(255, 255, 255, .90);
    font-size: 18px;
    line-height: 1.35;
    position: relative;
    padding-left: 26px;
}

.kaizen-offer2__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .22);
}

/* 8) CTA */
.kaizen-offer2__cta {
    appearance: none;
    border: none;
    border-radius: 9999px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
    cursor: pointer;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    background-size: 300% 300%;
    animation: gradientMove 5s ease infinite;
    box-shadow: 0 0 48px 8px rgb(143 143 143 / 25%);
    transition: transform .06s ease, box-shadow .2s ease;
}

.kaizen-offer2__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .26);
}

.kaizen-offer2__ctaIcon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 38, 34, .12);
}

/* 9) Responsive */
@media (max-width: 991.98px) {
    .kaizen-offer2__wrap {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .kaizen-offer2__media {
        min-height: 280px;
    }

    .kaizen-offer2__side::before {
        display: none;
    }
}

/* iOS/mobile: background-attachment fixed suele fallar */
@media (max-width: 767.98px) {
    .kaizen-offer2 {
        background-attachment: scroll;
    }
}

/* timer contador */

/* ✅ CSS (corregido: .wrap-counter ahora posiciona bien el botón absoluto) */
.wrap-counter {
    text-align: center;
    animation: breathe 8s ease-in-out infinite;
    position: relative;
    /* ✅ importante para el botón */
}

h1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.sub {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.timer {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.unit {
    text-align: center;
    min-width: 80px;
}

.unit span {
    display: block;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.unit label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-top: 6px;
    display: block;
}

.message-counter {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-top: 20px;
}

@keyframes breathe {
    0% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.85;
    }
}

.info-btn-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
}

.note {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    display: none;
}

/* mt responsive */

.mt-responsive-sect {
    margin-top: -140px;
}


.who-blob {
    position: absolute;
    top: 180%;
    left: 120%;
    transform: translate(-50%, -50%);
    width: 1154px;
    height: 1154px;
    z-index: -2;
    pointer-events: none;
    filter: blur(450px);
    transform-origin: center;
    background: conic-gradient(from 0deg, #485127 0deg 180deg,
            /* color 1 (lavanda) */
            #f7ffb5 180deg 360deg
            /* color 2 (morado oscuro) */
        );
    border-radius: 50%;
    animation: turn 10s linear infinite;
}

@keyframes turn {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.serv-marq {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.main-colorbg3 {
    background: linear-gradient(135deg, #434c23, #748051, #282c17);
    background-size: 300% 300%;
    animation: softGradient 10s ease infinite;
    border-top: 1px solid rgba(218, 198, 255, 0.35);
    border-bottom: 1px solid rgb(218, 198, 255);
}

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

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

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

.container-fluid {
    width: 100%;
}

.rest {
    padding: 0 !important;
    margin: 0 !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.col-12 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-marq {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.main-marq .slide-har {
    display: flex;
    width: max-content;
}

.slide-har {
    position: relative;
}

.slide-har.st1 .box {
    position: relative;
    display: flex;
    animation: slide-har 80s linear infinite;
}

.main-marq .box {
    display: flex;
    flex-shrink: 0;
}

.main-marq .box .item {
    padding: 0 30px;
}

.main-marq .box .item h4 {
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #cdc4b6 !important;
}

.main-marq .non-strok .item h4 {
    color: #cdc4b6 !important;
    -webkit-text-stroke: 0 !important;
}

.dark-text {
    color: #000 !important;
}

.dark-text .box .item h4,
.dark-text .box:last-of-type .item:nth-of-type(even) h4 {
    color: #cdc4b6 !important;
}

.dark-text .strok .box .item h4,
.dark-text .box .item:nth-of-type(even) h4,
.dark-text .box:last-of-type .item:nth-of-type(odd) h4 {
    -webkit-text-stroke: 1px #000;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.fz-50 {
    font-size: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.stroke {
    color: transparent;
    -webkit-text-stroke: 1px #1d1d1d;
}

.icon::before {
    content: "";
}

@keyframes slide-har {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .pt-20 {
        padding-top: 14px !important;
    }

    .pb-20 {
        padding-bottom: 14px !important;
    }

    .main-marq .box .item {
        padding: 0 22px;
    }

    .main-marq .box .item h4 {
        font-size: 22px;
    }
}

.mt-30 {
    margin-top: 30px;
}

/* =====================
   Results Section

   /* =========================================================
   RESULTADOS DEL PROCESO
   ========================================================= */

.results-section {
    --results-bg: #f0efee;
    --results-card: #fbfaf6;
    --results-card-hover: #ffffff;

    --results-text: #343819;
    --results-text-soft: #6e7254;
    --results-accent: #586028;
    --results-accent-dark: #394008;

    --results-border: rgba(71, 78, 29, 0.12);
    --results-line: rgba(71, 78, 29, 0.16);

    position: relative;
    overflow: hidden;

    padding: 110px 24px;

    background-color: var(--results-bg);
    color: var(--results-text);
}

/* Decoración ambiental muy suave */
.results-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(88, 96, 40, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.results-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(88, 96, 40, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.results-container {
    position: relative;
    z-index: 1;

    width: min(100%, 1120px);
    margin: 0 auto;
}

/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.results-intro {
    width: min(100%, 720px);
    margin: 0 auto 54px;
    text-align: center;
}

.results-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--results-accent);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.results-title {
    margin: 0;

    color: var(--clr-secondary);

    font-size: clamp(40px, 5vw, 62px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.results-description {
    width: min(100%, 620px);
    margin: 22px auto 0;

    color: var(--results-text-soft);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================================
   GRID
   ========================================================= */

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.result-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid var(--results-border);
    border-radius: 24px;

    background-color: var(--results-card);

    box-shadow:
        0 12px 35px rgba(52, 56, 25, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    transition:
        transform 300ms ease,
        border-color 300ms ease,
        background-color 300ms ease,
        box-shadow 300ms ease;
}

.result-card:hover {
    transform: translateY(-5px);

    border-color: rgba(71, 78, 29, 0.22);
    background-color: var(--results-card-hover);

    box-shadow:
        0 20px 46px rgba(52, 56, 25, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.result-card--wide {
    grid-column: span 2;
    min-height: 190px;
}

.result-card--featured {
    grid-column: span 2;
    min-height: 230px;

    border-color: transparent;
    background-color: var(--results-accent-dark);
    color: #ffffff;

    box-shadow:
        0 22px 55px rgba(57, 64, 8, 0.2);
}

.result-card--featured:hover {
    border-color: transparent;
    background-color: #434b0d;

    box-shadow:
        0 28px 64px rgba(57, 64, 8, 0.25);
}

/* =========================================================
   CONTENIDO DE LAS CARDS
   ========================================================= */

.result-card__number {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--results-accent);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
}

.result-card__number::after {
    content: "";

    width: 42px;
    height: 1px;

    background-color: var(--results-line);
}

.result-card--featured .result-card__number {
    color: #d9ddb5;
}

.result-card--featured .result-card__number::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.result-card__content {
    margin-top: 34px;
}

.result-card__title {
    max-width: 720px;
    margin: 0;

    color: inherit;

    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.result-card__description {
    max-width: 700px;
    margin: 12px 0 0;

    color: var(--results-text-soft);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.result-card--featured .result-card__title {
    color: #ffffff;
}

.result-card--featured .result-card__description {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   ANIMACIÓN DE ENTRADA
   ========================================================= */

.results-reveal {
    opacity: 0;
    transform: translateY(18px);

    animation: resultsReveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.results-intro.results-reveal {
    animation-delay: 80ms;
}

.result-card:nth-child(1) {
    animation-delay: 180ms;
}

.result-card:nth-child(2) {
    animation-delay: 260ms;
}

.result-card:nth-child(3) {
    animation-delay: 340ms;
}

.result-card:nth-child(4) {
    animation-delay: 420ms;
}

.result-card:nth-child(5) {
    animation-delay: 500ms;
}

@keyframes resultsReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

/* Reduce el movimiento para quienes lo soliciten */
@media (prefers-reduced-motion: reduce) {
    .results-reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .result-card {
        transition: none;
    }

    .result-card:hover {
        transform: none;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {
    .results-section {
        padding: 86px 20px;
    }

    .results-intro {
        margin-bottom: 40px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .result-card,
    .result-card--wide,
    .result-card--featured {
        grid-column: auto;
        min-height: 0;
    }

    .result-card {
        padding: 26px;
    }

    .result-card__content {
        margin-top: 28px;
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 560px) {
    .results-section {
        padding: 70px 16px;
    }

    .results-intro {
        margin-bottom: 32px;
        text-align: left;
    }

    .results-title {
        font-size: 40px;
        line-height: 1.08;
    }

    .results-description {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .result-card {
        padding: 23px 21px;
        border-radius: 18px;
    }

    .result-card__content {
        margin-top: 25px;
    }

    .result-card__title {
        font-size: 25px;
        line-height: 1.18;
    }

    .result-card__description {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.65;
    }

    .result-card__number::after {
        width: 32px;
    }
}

/* =========================================================
   BONUS SECTION
   
   /* =========================================================
   BONOS DEL PROGRAMA

   Imagen recomendada:
   1080 × 1920 px

   Ajustar la ruta según la ubicación del archivo CSS.
   ========================================================= */

.program-bonuses {
    --bonus-background: #313805;
    --bonus-text: #ffffff;
    --bonus-text-soft: rgba(255, 255, 255, 0.72);
    --bonus-line: rgba(255, 255, 255, 0.2);
    --bonus-accent: #d8dcb5;

    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 590px;
    padding: 96px 24px;

    display: flex;
    align-items: center;

    background-color: var(--bonus-background);
    background-image: url("../images/pain_reflection.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 68% 42%;

    color: var(--bonus-text);
}

/* =========================================================
   OVERLAY

   Mantiene visible la fotografía y protege el contraste.
   ========================================================= */

.program-bonuses__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(90deg,
            rgba(34, 40, 5, 0.88) 0%,
            rgba(34, 40, 5, 0.72) 38%,
            rgba(34, 40, 5, 0.38) 67%,
            rgba(34, 40, 5, 0.18) 100%);
}

/* =========================================================
   CONTENEDOR
   ========================================================= */

.program-bonuses__container {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.program-bonuses__content {
    width: min(100%, 670px);
}

/* =========================================================
   ENCABEZADO
   ========================================================= */

.program-bonuses__header {
    margin-bottom: 40px;
}

.program-bonuses__title {
    max-width: 520px;
    margin: 0;

    color: var(--bonus-text);
    font-size: clamp(40px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.program-bonuses__title::after {
    content: "";

    display: block;
    width: 58px;
    height: 1px;
    margin-top: 22px;

    background-color: var(--bonus-accent);
}

/* =========================================================
   LISTA DE BONOS
   ========================================================= */

.program-bonuses__list {
    width: 100%;
    border-top: 1px solid var(--bonus-line);
}

.program-bonus {
    min-height: 96px;
    padding: 24px 2px;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid var(--bonus-line);
}

.program-bonus__number {
    color: var(--bonus-accent);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
}

.program-bonus__title {
    margin: 0;

    color: var(--bonus-text);



    font-size: clamp(21px, 2.1vw, 29px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

/* Hover muy discreto */

.program-bonus {
    transition:
        padding-left 260ms ease,
        border-color 260ms ease;
}

.program-bonus:hover {
    padding-left: 8px;
    border-color: rgba(255, 255, 255, 0.34);
}

/* =========================================================
   ENTRADA SUTIL
   ========================================================= */

.bonus-entrance {
    opacity: 0;
    transform: translateY(14px);

    animation:
        bonusEntrance 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.program-bonuses__header {
    animation-delay: 80ms;
}

.program-bonus:nth-child(1) {
    animation-delay: 180ms;
}

.program-bonus:nth-child(2) {
    animation-delay: 260ms;
}

.program-bonus:nth-child(3) {
    animation-delay: 340ms;
}

@keyframes bonusEntrance {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .program-bonuses {
        min-height: 560px;
        padding: 78px 22px;

        background-position: 62% 38%;
    }

    .program-bonuses__overlay {
        background:
            linear-gradient(90deg,
                rgba(34, 40, 5, 0.85) 0%,
                rgba(34, 40, 5, 0.68) 52%,
                rgba(34, 40, 5, 0.32) 100%);
    }

    .program-bonuses__content {
        width: min(100%, 620px);
    }
}

/* =========================================================
   MÓVIL

   La fotografía vertical 1080 × 1920 conserva más altura.
   ========================================================= */

@media (max-width: 600px) {
    .program-bonuses {
        min-height: 720px;
        padding: 70px 20px 50px;

        align-items: flex-end;

        background-size: cover;
        background-position: center 18%;
    }

    .program-bonuses__overlay {
        background:
            linear-gradient(180deg,
                rgba(34, 40, 5, 0.12) 0%,
                rgba(34, 40, 5, 0.28) 35%,
                rgba(34, 40, 5, 0.78) 68%,
                rgba(34, 40, 5, 0.94) 100%);
    }

    .program-bonuses__header {
        margin-bottom: 30px;
    }

    .program-bonuses__title {
        max-width: 340px;
        font-size: 40px;
        line-height: 1.08;
    }

    .program-bonuses__title::after {
        width: 48px;
        margin-top: 18px;
    }

    .program-bonus {
        min-height: 82px;
        padding: 20px 0;

        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
    }

    .program-bonus:hover {
        padding-left: 0;
    }

    .program-bonus__title {
        font-size: 22px;
        line-height: 1.3;
    }
}

/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {
    .program-bonuses {
        min-height: 680px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .program-bonuses__title {
        font-size: 36px;
    }

    .program-bonus {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
    }

    .program-bonus__title {
        font-size: 20px;
    }
}

/* =========================================================
   REDUCCIÓN DE MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .bonus-entrance {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .program-bonus {
        transition: none;
    }

    .program-bonus:hover {
        padding-left: 2px;
    }
}

/* =========================================================
   FAQ Redesign
*/

/* =========================================================
   FAQ — REDISEÑO EDITORIAL
   ========================================================= */

.faq-redesign {
    --faq-bg: #f0efee;
    --faq-surface: #fbfaf6;
    --faq-surface-open: #ffffff;

    --faq-text: #343819;
    --faq-text-soft: #6f7356;
    --faq-text-muted: #85896d;

    --faq-accent: #59612b;
    --faq-accent-dark: #3d4415;

    --faq-border: rgba(73, 79, 33, 0.14);
    --faq-border-active: rgba(73, 79, 33, 0.3);

    position: relative;
    overflow: hidden;

    padding: 110px 24px;

    background-color: var(--faq-bg);
    color: var(--faq-text);
}

.faq-redesign *,
.faq-redesign *::before,
.faq-redesign *::after {
    box-sizing: border-box;
}

.faq-redesign::before {
    content: "";

    position: absolute;
    top: 90px;
    left: -160px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(89, 97, 43, 0.07);
    border-radius: 50%;

    pointer-events: none;
}

.faq-redesign__container {
    position: relative;
    z-index: 1;

    width: min(100%, 1140px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(56px, 8vw, 104px);
    align-items: start;
}

/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.faq-redesign__intro {
    position: sticky;
    top: 40px;
}

.faq-redesign__eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--faq-accent);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.faq-redesign__title {
    max-width: 440px;
    margin: 0;
    color: var(--clr-secondary);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.faq-redesign__description {
    max-width: 390px;
    margin: 23px 0 0;

    color: var(--faq-text-soft);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.faq-redesign__line {
    display: block;

    width: 62px;
    height: 1px;
    margin-top: 28px;

    background-color: var(--faq-accent);
}

/* =========================================================
   ACORDEÓN
   ========================================================= */

.faq-accordion {
    display: grid;
    gap: 12px;
}

.faq-card {
    overflow: hidden;

    border: 1px solid var(--faq-border);
    border-radius: 18px;

    background-color: var(--faq-surface);

    box-shadow:
        0 8px 24px rgba(52, 56, 25, 0.035);

    transition:
        border-color 260ms ease,
        background-color 260ms ease,
        box-shadow 260ms ease;
}

.faq-card:hover {
    border-color: rgba(73, 79, 33, 0.22);
}

.faq-card--open {
    border-color: var(--faq-border-active);
    background-color: var(--faq-surface-open);

    box-shadow:
        0 16px 38px rgba(52, 56, 25, 0.065);
}

.faq-card__heading {
    margin: 0;
}

.faq-card__button {
    width: 100%;
    min-height: 84px;
    padding: 20px 22px;

    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 18px;

    border: 0;
    outline: 0;

    background: transparent;
    color: inherit;

    text-align: left;
    cursor: pointer;
}

.faq-card__button:focus-visible {
    outline: 2px solid var(--faq-accent);
    outline-offset: -4px;
    border-radius: 16px;
}

.faq-card__number {
    color: var(--faq-text-muted);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
}

.faq-card__question {
    color: var(--faq-text);



    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.018em;
}

/* =========================================================
   ÍCONO + / ×
   ========================================================= */

.faq-card__icon {
    position: relative;

    width: 34px;
    height: 34px;

    display: block;

    border: 1px solid var(--faq-border);
    border-radius: 50%;

    background-color: transparent;

    transition:
        border-color 250ms ease,
        background-color 250ms ease,
        transform 300ms ease;
}

.faq-card__icon::before,
.faq-card__icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 1px;

    background-color: var(--faq-accent);

    transform: translate(-50%, -50%);
    transition: transform 300ms ease;
}

.faq-card__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card--open .faq-card__icon {
    border-color: var(--faq-accent);
    background-color: var(--faq-accent);
    transform: rotate(90deg);
}

.faq-card--open .faq-card__icon::before,
.faq-card--open .faq-card__icon::after {
    background-color: #ffffff;
}

.faq-card--open .faq-card__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* =========================================================
   RESPUESTAS
   ========================================================= */

.faq-card__answer {
    height: 0;
    overflow: hidden;

    transition:
        height 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-card__answer[hidden] {
    display: block;
}

.faq-card__answer-inner {
    padding:
        0 76px 25px 76px;

    opacity: 0;
    transform: translateY(-6px);

    transition:
        opacity 250ms ease,
        transform 300ms ease;
}

.faq-card--open .faq-card__answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-card__answer p {
    max-width: 610px;
    margin: 0;

    color: var(--faq-text-soft);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.72;
}

/* =========================================================
   ENTRADA INICIAL
   ========================================================= */

.faq-reveal {
    opacity: 0;
    transform: translateY(14px);

    animation:
        faqReveal 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.faq-redesign__intro {
    animation-delay: 70ms;
}

.faq-card:nth-child(1) {
    animation-delay: 150ms;
}

.faq-card:nth-child(2) {
    animation-delay: 220ms;
}

.faq-card:nth-child(3) {
    animation-delay: 290ms;
}

.faq-card:nth-child(4) {
    animation-delay: 360ms;
}

.faq-card:nth-child(5) {
    animation-delay: 430ms;
}

.faq-card:nth-child(6) {
    animation-delay: 500ms;
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .faq-redesign {
        padding: 88px 22px;
    }

    .faq-redesign__container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .faq-redesign__intro {
        position: static;
        max-width: 680px;
    }

    .faq-redesign__description {
        max-width: 560px;
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {
    .faq-redesign {
        padding: 72px 16px;
    }

    .faq-redesign__container {
        gap: 34px;
    }

    .faq-redesign__eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .faq-redesign__title {
        font-size: 40px;
        line-height: 1.08;
    }

    .faq-redesign__description {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .faq-redesign__line {
        width: 48px;
        margin-top: 22px;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-card {
        border-radius: 15px;
    }

    .faq-card__button {
        min-height: 74px;
        padding: 17px 16px;

        grid-template-columns: 27px minmax(0, 1fr) 32px;
        gap: 11px;
    }

    .faq-card__question {
        font-size: 18px;
        line-height: 1.35;
    }

    .faq-card__icon {
        width: 30px;
        height: 30px;
    }

    .faq-card__answer-inner {
        padding:
            0 48px 22px 54px;
    }

    .faq-card__answer p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {
    .faq-redesign {
        padding-right: 13px;
        padding-left: 13px;
    }

    .faq-redesign__title {
        font-size: 36px;
    }

    .faq-card__button {
        grid-template-columns: 24px minmax(0, 1fr) 30px;
        gap: 9px;
    }

    .faq-card__question {
        font-size: 17px;
    }

    .faq-card__answer-inner {
        padding-right: 42px;
        padding-left: 49px;
    }
}

/* =========================================================
   MOVIMIENTO REDUCIDO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .faq-reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .faq-card,
    .faq-card__answer,
    .faq-card__answer-inner,
    .faq-card__icon,
    .faq-card__icon::before,
    .faq-card__icon::after {
        transition: none;
    }
}

/* =========================================================
   REBE WHATSAPP FLOAT

   /* =========================================================
   BOTÓN FLOTANTE DE WHATSAPP
   Clases aisladas para evitar conflictos.
   ========================================================= */

.rebe-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    background-color: #25d366;
    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(25, 45, 30, 0.2),
        0 3px 10px rgba(25, 45, 30, 0.14);

    transition:
        transform 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.rebe-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    background-color: #20bd5a;

    box-shadow:
        0 16px 34px rgba(25, 45, 30, 0.25),
        0 5px 14px rgba(25, 45, 30, 0.18);
}

.rebe-whatsapp-float:active {
    transform: translateY(-1px) scale(0.97);
}

.rebe-whatsapp-float:focus-visible {
    outline: 3px solid rgba(69, 77, 34, 0.45);
    outline-offset: 4px;
}

.rebe-whatsapp-float__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
}

/* Tooltip */

.rebe-whatsapp-float__tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 13px);

    width: max-content;
    max-width: 190px;
    padding: 9px 13px;

    border-radius: 999px;

    background-color: #424923;
    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translate(8px, -50%);

    box-shadow: 0 8px 22px rgba(40, 45, 20, 0.16);

    pointer-events: none;

    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease;
}

.rebe-whatsapp-float:hover .rebe-whatsapp-float__tooltip,
.rebe-whatsapp-float:focus-visible .rebe-whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

/* Pulso exterior sutil */

.rebe-whatsapp-float::before {
    content: "";

    position: absolute;
    inset: -7px;

    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: inherit;

    opacity: 0;

    animation: rebeWhatsappPulse 2.8s ease-out infinite;
}

@keyframes rebeWhatsappPulse {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    20% {
        opacity: 0.55;
    }

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

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {
    .rebe-whatsapp-float {
        right: 16px;
        bottom: 18px;

        width: 56px;
        height: 56px;
    }

    .rebe-whatsapp-float__icon {
        width: 29px;
        height: 29px;
    }

    /* En móvil ocultamos el tooltip para que no invada la pantalla */
    .rebe-whatsapp-float__tooltip {
        display: none;
    }
}

@media (max-width: 380px) {
    .rebe-whatsapp-float {
        right: 13px;
        bottom: 15px;

        width: 54px;
        height: 54px;
    }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .rebe-whatsapp-float,
    .rebe-whatsapp-float__tooltip {
        transition: none;
    }

    .rebe-whatsapp-float::before {
        animation: none;
    }
}

.footer-copyright__link {
    color: inherit;
    text-decoration: none;
}

.footer-copyright__link:hover {
    opacity: 0.75;
}


/* =========================================================
   HERO MAGNETICO

   /* =========================================================
   HERO BANNER — MAGNÉTICA MUJER AUTÉNTICA

   Desktop: 1920 × 800 px
   Responsive: 1080 × 800 px
   ========================================================= */

.magnetic-banner {
    --banner-text: #f8f7ef;
    --banner-accent: #d7ddbd;
    --banner-text-soft: #e4e6d3;

    --banner-primary: #354300;
    --banner-primary-hover: #455500;

    --banner-secondary: #dbe2c5;
    --banner-secondary-hover: #eef2df;
    --banner-secondary-text: #354014;

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    height: clamp(600px, 41.666vw, 800px);
    min-height: 600px;

    display: flex;
    align-items: center;

    background-color: #272b13;
    color: var(--banner-text);
}

.magnetic-banner *,
.magnetic-banner *::before,
.magnetic-banner *::after {
    box-sizing: border-box;
}

/* =========================================================
   IMAGEN
   ========================================================= */

.magnetic-banner__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-color: #333523;
    background-image: url("../images/banner-1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    animation: magneticBannerImage 1000ms ease-out both;
}

/* =========================================================
   OVERLAY

   El oscurecimiento se concentra en la izquierda para
   proteger el texto sin apagar a la persona.
   ========================================================= */

.magnetic-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(25, 28, 10, 0.9) 0%,
            rgba(25, 28, 10, 0.76) 28%,
            rgba(25, 28, 10, 0.42) 48%,
            rgba(25, 28, 10, 0.12) 70%,
            rgba(25, 28, 10, 0.04) 100%);
}

/* Sombreado inferior suave */

.magnetic-banner::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(10, 12, 4, 0.04) 48%,
            rgba(10, 12, 4, 0.28) 100%);

    pointer-events: none;
}

/* =========================================================
   CONTENEDOR INTERNO

   La imagen ocupa todo el ancho, pero el contenido mantiene
   una alineación controlada.
   ========================================================= */

.magnetic-banner__container {
    width: min(calc(100% - 96px), 1380px);
    margin: 0 auto;
}

.magnetic-banner__content {
    width: min(100%, 690px);

    animation:
        magneticBannerContent 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.magnetic-banner__eyebrow {
    margin: 0 0 18px;

    color: var(--banner-text-soft);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* =========================================================
   TÍTULO
   ========================================================= */

.magnetic-banner__title {
    max-width: 720px;
    margin: 0;

    color: var(--banner-accent);


    font-size: clamp(64px, 5.2vw, 92px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.052em;
}

.magnetic-banner__title span,
.magnetic-banner__title em {
    display: block;
}

.magnetic-banner__title em {
    margin-top: 7px;

    font-weight: 600;
    line-height: 1;
}

/* =========================================================
   FRASE
   ========================================================= */

.magnetic-banner__hook {
    max-width: 610px;
    margin: 28px 0 0;

    color: var(--banner-text);



    font-size: clamp(20px, 1.5vw, 25px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.015em;
}

/* =========================================================
   ACCIONES
   ========================================================= */

.magnetic-banner__actions {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.magnetic-banner__button {
    min-height: 54px;
    padding: 15px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 999px;


    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        transform 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.magnetic-banner__button:hover {
    transform: translateY(-2px);
}

.magnetic-banner__button:active {
    transform: translateY(0);
}

.magnetic-banner__button:focus-visible {
    outline: 3px solid rgba(219, 226, 197, 0.55);
    outline-offset: 4px;
}

.magnetic-banner__button--primary {
    background-color: var(--banner-primary);
    color: #ffffff;

    box-shadow:
        0 14px 32px rgba(20, 27, 2, 0.24);
}

.magnetic-banner__button--primary:hover {
    background-color: var(--banner-primary-hover);

    box-shadow:
        0 18px 38px rgba(20, 27, 2, 0.3);
}

.magnetic-banner__button--secondary {
    border-color: rgba(255, 255, 255, 0.28);

    background-color: var(--banner-secondary);
    color: var(--banner-secondary-text);
}

.magnetic-banner__button--secondary:hover {
    border-color: var(--banner-secondary-hover);
    background-color: var(--banner-secondary-hover);
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes magneticBannerImage {
    from {
        opacity: 0;
        transform: scale(1.018);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes magneticBannerContent {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1280px) {
    .magnetic-banner {
        height: 650px;
        min-height: 650px;
    }

    .magnetic-banner__container {
        width: min(calc(100% - 64px), 1180px);
    }

    .magnetic-banner__content {
        width: min(100%, 610px);
    }

    .magnetic-banner__title {
        font-size: clamp(60px, 6.3vw, 80px);
    }

    .magnetic-banner__overlay {
        background:
            linear-gradient(90deg,
                rgba(25, 28, 10, 0.9) 0%,
                rgba(25, 28, 10, 0.74) 34%,
                rgba(25, 28, 10, 0.34) 58%,
                rgba(25, 28, 10, 0.08) 100%);
    }
}

/* =========================================================
   TABLET

   Cambia a la imagen 1080 × 800.
   ========================================================= */

@media (max-width: 900px) {
    .magnetic-banner {
        height: 680px;
        min-height: 680px;
    }

    .magnetic-banner__background {
        background-image: url("../images/banner-1-responsive.png");
        background-position: center center;
    }

    .magnetic-banner__container {
        width: calc(100% - 48px);
    }

    .magnetic-banner__content {
        width: min(100%, 560px);
    }

    .magnetic-banner__title {
        font-size: clamp(54px, 8vw, 72px);
    }

    .magnetic-banner__overlay {
        background:
            linear-gradient(90deg,
                rgba(25, 28, 10, 0.86) 0%,
                rgba(25, 28, 10, 0.66) 50%,
                rgba(25, 28, 10, 0.18) 100%);
    }
}

/* =========================================================
   MÓVIL

   Banner completo de lado a lado.
   Imagen responsive 1080 × 800.
   ========================================================= */

@media (max-width: 680px) {
    .magnetic-banner {
        height: 760px;
        min-height: 760px;

        align-items: flex-end;
    }

    .magnetic-banner__background {
        background-image: url("../images/banner-1-responsive.png");
        background-position: center center;
    }

    .magnetic-banner__overlay {
        background:
            linear-gradient(180deg,
                rgba(20, 22, 8, 0.05) 0%,
                rgba(20, 22, 8, 0.13) 28%,
                rgba(20, 22, 8, 0.62) 58%,
                rgba(20, 22, 8, 0.95) 100%);
    }

    .magnetic-banner::after {
        display: none;
    }

    .magnetic-banner__container {
        width: calc(100% - 40px);
        margin-bottom: 38px;
    }

    .magnetic-banner__content {
        width: 100%;
    }

    .magnetic-banner__eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .magnetic-banner__title {
        max-width: 100%;

        font-size: clamp(43px, 13vw, 58px);
        line-height: 0.99;
        letter-spacing: -0.045em;
    }

    .magnetic-banner__title em {
        margin-top: 5px;
    }

    .magnetic-banner__hook {
        max-width: 500px;
        margin-top: 22px;

        font-size: 19px;
        line-height: 1.48;
    }

    .magnetic-banner__actions {
        width: 100%;
        margin-top: 27px;

        flex-direction: column;
        align-items: stretch;
        gap: 11px;
    }

    .magnetic-banner__button {
        width: 100%;
        min-height: 54px;

        padding-right: 18px;
        padding-left: 18px;

        font-size: 15px;
    }
}

/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 390px) {
    .magnetic-banner {
        height: 730px;
        min-height: 730px;
    }

    .magnetic-banner__container {
        width: calc(100% - 32px);
        margin-bottom: 30px;
    }

    .magnetic-banner__title {
        font-size: 42px;
    }

    .magnetic-banner__hook {
        font-size: 18px;
    }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .magnetic-banner__background,
    .magnetic-banner__content {
        animation: none;
    }

    .magnetic-banner__button {
        transition: none;
    }

    .magnetic-banner__button:hover {
        transform: none;
    }
}

/* =========================================================
   MMA PROCESS
   ========================================================= */


/* =========================================================
   PROCESO DE TRANSFORMACIÓN
   Prefijo aislado: mma-process
   ========================================================= */

.mma-process {
    --mma-bg-before: #faf9f5;
    --mma-bg-after: #f4f3ec;

    --mma-text: #414622;
    --mma-text-soft: #6e7253;
    --mma-accent: #737b4f;
    --mma-accent-soft: #d6dcc1;

    --mma-border: rgba(70, 76, 36, 0.13);
    --mma-image-shadow: rgba(48, 53, 25, 0.13);

    width: 100%;
    overflow: hidden;

    color: var(--mma-text);
}

.mma-process *,
.mma-process *::before,
.mma-process *::after {
    box-sizing: border-box;
}

/* =========================================================
   ETAPAS
   ========================================================= */

.mma-process__stage {
    position: relative;
    padding: 100px 24px;
}


/* Separación editorial entre ambas etapas */


/* =========================================================
   CONTENEDOR Y GRID
   ========================================================= */

.mma-process__container {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.mma-process__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
    gap: clamp(64px, 8vw, 112px);
    align-items: center;
}

/*
  En el segundo bloque el contenido permanece primero en el HTML
  para que en móvil aparezca antes que la fotografía.
*/

.mma-process__grid--reverse {
    grid-template-areas: "media content";
    grid-template-columns: minmax(380px, 0.78fr) minmax(0, 0.95fr);
}

.mma-process__grid--reverse .mma-process__content {
    grid-area: content;
}

.mma-process__grid--reverse .mma-process__media {
    grid-area: media;
}

/* =========================================================
   CONTENIDO
   ========================================================= */

.mma-process__content {
    min-width: 0;
}

.mma-process__eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: var(--mma-accent);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mma-process__title {
    max-width: 540px;
    margin: 0;

    color: var(--mma-text);



    font-size: clamp(38px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.mma-process__title em {
    display: block;

    color: var(--mma-accent);
    font-weight: 600;
}

/* =========================================================
   LISTAS
   ========================================================= */

.mma-process__list {
    max-width: 620px;
    margin: 38px 0 0;
    padding: 0;

    display: grid;
    gap: 19px;

    list-style: none;
}

.mma-process__list li {
    position: relative;
    padding-left: 31px;

    color: var(--mma-text);



    font-size: clamp(19px, 1.65vw, 24px);
    font-weight: 400;
    line-height: 1.42;
}

/* Bullets del estado anterior */

.mma-process__list--before li::before {
    content: "";

    position: absolute;
    top: 0.63em;
    left: 2px;

    width: 7px;
    height: 7px;

    border: 1px solid var(--mma-accent);
    border-radius: 50%;

    background-color: transparent;
    transform: translateY(-50%);
}

/* Checks discretos para la transformación */

.mma-process__list--after li::before {
    content: "✓";

    position: absolute;
    top: 0.05em;
    left: 0;

    color: var(--mma-accent);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   IMÁGENES
   ========================================================= */

.mma-process__media {
    width: 100%;
    margin: 0;
}

.mma-process__image {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: block;

    border-radius: 26px;

    object-fit: cover;
    object-position: center;

    box-shadow:
        0 20px 46px var(--mma-image-shadow);

    transition:
        transform 450ms ease,
        box-shadow 450ms ease;
}

.mma-process__media:hover .mma-process__image {
    transform: translateY(-4px);

    box-shadow:
        0 26px 58px rgba(48, 53, 25, 0.17);
}

/* Ajustes específicos de encuadre */

.mma-process__stage--before .mma-process__image {
    object-position: center 44%;
}

.mma-process__stage--after .mma-process__image {
    object-position: center 38%;
}

/* =========================================================
   ANIMACIÓN DE ENTRADA
   ========================================================= */

.mma-process__reveal {
    opacity: 0;
    transform: translateY(18px);

    animation:
        mmaProcessReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mma-process__stage .mma-process__content {
    animation-delay: 80ms;
}

.mma-process__stage .mma-process__media {
    animation-delay: 180ms;
}

@keyframes mmaProcessReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .mma-process__stage {
        padding: 82px 22px;
    }

    .mma-process__grid,
    .mma-process__grid--reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "media";

        gap: 48px;
    }

    .mma-process__grid .mma-process__content,
    .mma-process__grid--reverse .mma-process__content {
        grid-area: content;
    }

    .mma-process__grid .mma-process__media,
    .mma-process__grid--reverse .mma-process__media {
        grid-area: media;
    }

    .mma-process__content {
        width: min(100%, 680px);
    }

    .mma-process__media {
        width: min(100%, 620px);
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {
    .mma-process__stage {
        padding: 68px 18px;
    }

    .mma-process__stage--after::before {
        width: calc(100% - 36px);
    }

    .mma-process__grid,
    .mma-process__grid--reverse {
        gap: 36px;
    }

    .mma-process__eyebrow {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .mma-process__title {
        max-width: 100%;

        font-size: 38px;
        line-height: 1.1;
    }

    .mma-process__list {
        margin-top: 30px;
        gap: 16px;
    }

    .mma-process__list li {
        padding-left: 27px;

        font-size: 19px;
        line-height: 1.42;
    }

    .mma-process__image {
        border-radius: 20px;
    }
}

/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {
    .mma-process__stage {
        padding-right: 15px;
        padding-left: 15px;
    }

    .mma-process__title {
        font-size: 34px;
    }

    .mma-process__list li {
        font-size: 18px;
    }

    .mma-process__image {
        border-radius: 17px;
    }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mma-process__reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .mma-process__image {
        transition: none;
    }

    .mma-process__media:hover .mma-process__image {
        transform: none;
    }
}

/* =========================================================
   SECCIÓN FINAL DE CIERRE (CALL TO ACTION)
   ========================================================= */

/* =========================================================
   CTA FINAL — MAGNÉTICA MUJER AUTÉNTICA
   Clases aisladas con prefijo mma-closing
   ========================================================= */

.mma-closing {
    --mma-closing-bg: #293005;
    --mma-closing-surface: #f5f3ed;

    --mma-closing-title: #f4f1e6;
    --mma-closing-text: rgba(255, 255, 255, 0.86);
    --mma-closing-soft: rgba(255, 255, 255, 0.7);

    --mma-closing-accent: #dbe1c5;
    --mma-closing-accent-text: #3c451c;
    --mma-closing-accent-hover: #eef2df;

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    background-color: var(--mma-closing-bg);
    color: var(--mma-closing-text);
}

.mma-closing *,
.mma-closing *::before,
.mma-closing *::after {
    box-sizing: border-box;
}

/* =========================================================
   IMAGEN

   Cambiá la ruta por la imagen real.
   ========================================================= */

.mma-closing__media {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-color: #4b4637;
    background-image: url("../images/banner-2.png");
    background-repeat: no-repeat;
    background-position: center 38%;
    background-size: cover;

    animation:
        mmaClosingImageReveal 1000ms ease-out both;
}

/* =========================================================
   OVERLAY DESKTOP

   Oscurece principalmente el lado izquierdo, donde vive
   el contenido. La persona queda más visible.
   ========================================================= */

.mma-closing__shade {
    position: absolute;
    inset: 0;
    z-index: -2;

    background: linear-gradient(90deg, rgb(25 29 8 / 38%) 0%, rgb(25 29 8 / 49%) 32%, rgba(25, 29, 8, 0.52) 53%, rgba(25, 29, 8, 0.18) 76%, rgba(25, 29, 8, 0.08) 100%);
}

.mma-closing::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(15, 17, 6, 0.02) 45%,
            rgba(15, 17, 6, 0.28) 100%);

    pointer-events: none;
}

/* =========================================================
   CONTENEDOR
   ========================================================= */

.mma-closing__container {
    width: min(calc(100% - 96px), 1280px);
    margin: 0 auto;
}

.mma-closing__content {
    width: min(100%, 590px);
    padding: 76px 0;

    animation:
        mmaClosingContentReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.mma-closing__eyebrow {
    margin: 0 0 16px;

    color: var(--mma-closing-accent);


    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* =========================================================
   TÍTULO
   ========================================================= */

.mma-closing__title {
    max-width: 580px;
    margin: 0;

    color: var(--mma-closing-title);


    font-size: clamp(50px, 4.8vw, 70px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.mma-closing__title em {
    display: block;
    margin-top: 7px;

    color: var(--mma-closing-accent);
    font-weight: 600;
    line-height: 1.02;
}

/* =========================================================
   TEXTO
   ========================================================= */

.mma-closing__copy {
    max-width: 570px;
    margin-top: 28px;

    display: grid;
    gap: 13px;
}

.mma-closing__copy p {
    margin: 0;

    color: var(--mma-closing-text);



    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
}

/* =========================================================
   FRASE DESTACADA
   ========================================================= */

.mma-closing__statement {
    max-width: 550px;
    margin: 30px 0 0;
    padding: 19px 0 0 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid var(--mma-closing-accent);

    color: var(--mma-closing-title);



    font-size: 19px;
    font-weight: 600;

    line-height: 1.55;
}

/* =========================================================
   CTA
   ========================================================= */

.mma-closing__button {
    min-height: 56px;
    margin-top: 34px;
    padding: 16px 29px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 999px;

    background-color: var(--mma-closing-accent);
    color: var(--mma-closing-accent-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    box-shadow:
        0 15px 34px rgba(18, 24, 2, 0.25);

    transition:
        transform 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.mma-closing__button:hover {
    transform: translateY(-2px);
    background-color: var(--mma-closing-accent-hover);

    box-shadow:
        0 20px 42px rgba(18, 24, 2, 0.32);
}

.mma-closing__button:active {
    transform: translateY(0);
}

.mma-closing__button:focus-visible {
    outline: 3px solid rgba(219, 225, 197, 0.55);
    outline-offset: 4px;
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes mmaClosingImageReveal {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mmaClosingContentReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1180px) {
    .mma-closing {
        min-height: 650px;
    }

    .mma-closing__container {
        width: min(calc(100% - 64px), 1080px);
    }

    .mma-closing__content {
        width: min(100%, 540px);
    }

    .mma-closing__title {
        font-size: clamp(48px, 5.8vw, 64px);
    }

    .mma-closing__shade {
        background:
            linear-gradient(90deg,
                rgba(25, 29, 8, 0.92) 0%,
                rgba(25, 29, 8, 0.78) 42%,
                rgba(25, 29, 8, 0.34) 68%,
                rgba(25, 29, 8, 0.08) 100%);
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 860px) {
    .mma-closing {
        min-height: 700px;
    }

    .mma-closing__container {
        width: calc(100% - 48px);
    }

    .mma-closing__content {
        width: min(100%, 520px);
    }

    .mma-closing__media {
        background-position: 58% center;
    }

    .mma-closing__shade {
        background:
            linear-gradient(90deg,
                rgba(25, 29, 8, 0.9) 0%,
                rgba(25, 29, 8, 0.72) 55%,
                rgba(25, 29, 8, 0.28) 100%);
    }
}

/* =========================================================
   MÓVIL

   La imagen se transforma en una franja superior.
   El contenido queda sobre un fondo sólido, evitando que
   el texto tape el rostro.
   ========================================================= */

/* =========================================================
   MÓVIL
   Imagen más alta + transición integrada con el contenido
   ========================================================= */

@media (max-width: 680px) {
    .mma-closing {
        --mma-closing-mobile-image-height:
            clamp(390px, 118vw, 470px);

        min-height: 0;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows:
            var(--mma-closing-mobile-image-height) auto;

        align-items: stretch;

        background-color: var(--mma-closing-surface);
        color: #414622;
    }

    /* Imagen superior más grande */

    .mma-closing__media {

        inset: auto;
        z-index: 0;


        width: 100%;
        min-height: 0;
        height: var(--mma-closing-mobile-image-height);

        background-image: url("../images/banner-2.png");
        background-repeat: no-repeat;
        background-size: cover;

        /*
          Mové el primer valor según la posición de la persona:
          50% = centro
          60–68% = mostrar más el lado derecho
        */
        background-position: 100% center;
    }

    /*
      Transición visual entre fotografía y contenido.
      Evita que parezcan dos secciones separadas.
    */

    .mma-closing__media::after {
        content: "";

        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;

        height: 88px;

        background:
            linear-gradient(180deg,
                rgba(245, 243, 237, 0) 0%,
                rgba(245, 243, 237, 0.5) 48%,
                var(--mma-closing-surface) 100%);

        pointer-events: none;
    }

    /* Overlay únicamente sobre la imagen */

    .mma-closing__shade {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 1;

        width: 100%;
        height: var(--mma-closing-mobile-image-height);

        background:
            linear-gradient(180deg,
                rgba(24, 27, 9, 0.02) 0%,
                rgba(24, 27, 9, 0.06) 55%,
                rgba(24, 27, 9, 0.2) 82%,
                rgba(24, 27, 9, 0.3) 100%);

        pointer-events: none;
    }

    .mma-closing::after {
        display: none;
    }

    /* Contenido unido a la imagen */

    .mma-closing__container {
        position: relative;
        z-index: 2;

        grid-column: 1;
        grid-row: 2;

        width: 100%;
        margin: -34px 0 0;

        background-color: var(--mma-closing-surface);
    }

    .mma-closing__content {
        width: 100%;
        padding: 48px 22px 58px;
    }

    /* Textos */

    .mma-closing__eyebrow {
        margin: 0 0 13px;

        color: #747b50;

        font-size: 10px;
        line-height: 1.2;
        letter-spacing: 0.15em;
    }

    .mma-closing__title {
        max-width: 100%;
        margin: 0;

        color: #414622;

        font-size: clamp(39px, 11.8vw, 48px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .mma-closing__title em {
        margin-top: 5px;
        color: #737b4f;
    }

    .mma-closing__copy {
        max-width: 100%;
        margin-top: 24px;

        gap: 13px;
    }

    .mma-closing__copy p {
        color: #666b4d;

        font-size: 15px;
        line-height: 1.7;
    }

    /* Frase destacada */

    .mma-closing__statement {
        max-width: 100%;
        margin-top: 28px;
        padding: 18px 0 0 17px;

        border-top-color: rgba(65, 70, 34, 0.15);
        border-left-color: #737b4f;

        color: #414622;

        font-size: 18px;
        line-height: 1.52;
    }

    /* CTA */

    .mma-closing__button {
        width: 100%;
        min-height: 56px;

        margin-top: 30px;
        padding: 16px 20px;

        background-color: #404b17;
        color: #ffffff;

        font-size: 15px;

        box-shadow:
            0 14px 30px rgba(54, 65, 20, 0.17);
    }

    .mma-closing__button:hover {
        background-color: #505d20;
    }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 390px) {
    .mma-closing {
        --mma-closing-mobile-image-height:
            clamp(390px, 122vw, 440px);
    }

    .mma-closing__media {
        background-position: 63% center;
    }

    .mma-closing__container {
        margin-top: -30px;
    }

    .mma-closing__content {
        padding: 44px 18px 50px;
    }

    .mma-closing__title {
        font-size: clamp(37px, 11.5vw, 42px);
    }

    .mma-closing__copy {
        margin-top: 22px;
    }

    .mma-closing__copy p {
        font-size: 14px;
        line-height: 1.68;
    }

    .mma-closing__statement {
        margin-top: 25px;

        font-size: 17px;
        line-height: 1.5;
    }

    .mma-closing__button {
        margin-top: 27px;
    }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mma-closing__media,
    .mma-closing__content {
        animation: none;
    }

    .mma-closing__button {
        transition: none;
    }

    .mma-closing__button:hover {
        transform: none;
    }
}

/* =========================================================
   BONOS
   ========================================================= */
/* =========================================================
   BONOS DEL PROGRAMA
   Clases aisladas: mma-bonuses
   ========================================================= */

.mma-bonuses {
    --mma-bonuses-bg: linear-gradient(180deg, #ffffff 0%, #afb6971a 100%);

    --mma-bonuses-surface:
        rgba(255, 255, 255, 0.42);

    --mma-bonuses-surface-strong:
        rgba(255, 255, 255, 0.56);

    --mma-bonuses-border:
        rgba(104, 112, 67, 0.16);

    --mma-bonuses-text: #414622;
    --mma-bonuses-text-soft: #666b4d;
    --mma-bonuses-accent: #737b4f;
    --mma-bonuses-accent-soft: #dce1c8;

    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background: var(--mma-bonuses-bg);
}

.mma-bonuses *,
.mma-bonuses *::before,
.mma-bonuses *::after {
    box-sizing: border-box;
}

/* fondo decorativo suave */
.mma-bonuses::before,
.mma-bonuses::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
}

.mma-bonuses::before {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -60px;
    background: rgba(171, 179, 128, 0.28);
}

.mma-bonuses::after {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -100px;
    background: rgba(214, 220, 193, 0.42);
}

.mma-bonuses__container {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.mma-bonuses__header {
    max-width: 760px;
    margin-bottom: 48px;
}

.mma-bonuses__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--mma-bonuses-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mma-bonuses__title {
    margin: 0;
    color: var(--mma-bonuses-text);
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.mma-bonuses__subtitle {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--mma-bonuses-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   GRID
   ========================================================= */

.mma-bonuses__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* =========================================================
   CARD
   ========================================================= */

.mma-bonuses__card {
    position: relative;
    min-height: 280px;
    padding: 28px 28px 30px;

    display: flex;
    flex-direction: column;
    gap: 26px;

    border-radius: 8px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.56) 0%,
            rgba(255, 255, 255, 0.34) 100%);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 14px 40px rgba(75, 83, 36, 0.08);

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease,
        background-color 280ms ease;
}

.mma-bonuses__card:hover {
    transform: translateY(-6px);
    border-color: rgba(104, 112, 67, 0.26);

    box-shadow:
        0 24px 54px rgba(75, 83, 36, 0.12);
}

.mma-bonuses__card:nth-child(2) {
    transform: translateY(10px);
}

.mma-bonuses__card:nth-child(2):hover {
    transform: translateY(4px);
}

.mma-bonuses__card:nth-child(3) {
    transform: translateY(20px);
}

.mma-bonuses__card:nth-child(3):hover {
    transform: translateY(14px);
}

/* =========================================================
   NUMBER
   ========================================================= */

.mma-bonuses__number {
    color: rgba(115, 123, 79, 0.24);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* =========================================================
   CONTENT
   ========================================================= */

.mma-bonuses__content {
    margin-top: auto;
}

.mma-bonuses__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 16px;

    color: var(--mma-bonuses-accent);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mma-bonuses__card-title {
    margin: 0;
    color: var(--mma-bonuses-text);
    font-size: clamp(26px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.mma-bonuses__card-text {
    margin: 14px 0 0;
    color: var(--mma-bonuses-text-soft);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {
    .mma-bonuses {
        padding: 90px 22px;
    }

    .mma-bonuses__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mma-bonuses__card,
    .mma-bonuses__card:nth-child(2),
    .mma-bonuses__card:nth-child(3) {
        min-height: 0;
        transform: none;
    }

    .mma-bonuses__card:hover,
    .mma-bonuses__card:nth-child(2):hover,
    .mma-bonuses__card:nth-child(3):hover {
        transform: translateY(-4px);
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .mma-bonuses {
        padding: 72px 18px;
    }

    .mma-bonuses__header {
        margin-bottom: 34px;
    }

    .mma-bonuses__eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .mma-bonuses__title {
        font-size: 40px;
        line-height: 1.05;
    }

    .mma-bonuses__subtitle {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .mma-bonuses__grid {
        gap: 16px;
    }

    .mma-bonuses__card {
        padding: 24px 20px 24px;
        border-radius: 22px;
        gap: 20px;
    }

    .mma-bonuses__number {
        font-size: 34px;
    }

    .mma-bonuses__tag {
        margin-bottom: 14px;
    }

    .mma-bonuses__card-title {
        font-size: 28px;
        line-height: 1.14;
    }

    .mma-bonuses__card-text {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.72;
    }
}