/* =============================================
   PLATAFORMA TURBO - Design System
   Seção 01: Hero (Promessa + VSL + CTA)
   ============================================= */

/* ---------- CSS Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Design Tokens ---------- */
:root {
    /* Typography */
    --font-primary: 'Parkinsans', sans-serif;

    /* Colors */
    --color-bg: #9705b8;
    --color-bg-dark: #7a0496;
    --color-white: #ffffff;
    --color-white-soft: rgba(255, 255, 255, 0.85);
    --color-accent: #ff7dc0;
    --color-accent-glow: rgba(255, 125, 192, 0.35);

    /* Glow overlays */
    --glow-primary: rgba(151, 5, 184, 0.6);
    --glow-accent: rgba(255, 125, 192, 0.18);

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-vsl: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 60px rgba(255, 125, 192, 0.10);
    --shadow-cta: 0 4px 25px rgba(255, 125, 192, 0.45);
    --shadow-cta-hover: 0 6px 35px rgba(255, 125, 192, 0.65);

    /* Transitions */
    --transition-fast: 180ms ease;
    --transition-base: 300ms ease;
    --transition-smooth: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* =============================================
   MARQUEE — Ticker de topo
   ============================================= */
.marquee {
    width: 100%;
    background: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Fade nas bordas laterais */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.marquee__item i {
    font-size: 0.7rem;
    color: var(--color-accent);
}

.marquee__dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Modificadores para Marquee Divider (Bônus) */
.marquee--divider {
    background: var(--color-accent);
    /* Rosa claro/vibrante */
    border-top: 2px solid #ffffff;
    /* Stroke branco */
    border-bottom: 2px solid #ffffff;
    /* Stroke branco */
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(255, 125, 192, 0.3);
}

.marquee--divider::before {
    background: linear-gradient(to right, var(--color-accent) 0%, transparent 100%);
}

.marquee--divider::after {
    background: linear-gradient(to left, var(--color-accent) 0%, transparent 100%);
}

.marquee--divider .marquee__item {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

.marquee--divider .marquee__item i {
    color: #ffffff;
    font-size: 1rem;
}

.marquee--divider .marquee__dot {
    background: #ffffff;
    opacity: 1;
}

.marquee__track--fast {
    animation-duration: 38s;
    /* Bem mais lento e legível */
}

/* Marquee Oferta (Roxo) */
.marquee--offer {
    background: var(--color-bg);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
}

.marquee--offer::before {
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.marquee--offer::after {
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.marquee--offer .marquee__item {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

.marquee--offer .marquee__item i {
    color: var(--color-accent);
    font-size: 1rem;
}

.marquee--offer .marquee__dot {
    background: var(--color-accent);
    opacity: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 42px);
    min-height: calc(100dvh - 42px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    overflow: hidden;
}

/* -- Background glows (decorative) -- */
.hero__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero__bg-glow--top {
    width: 500px;
    height: 500px;
    top: -160px;
    right: -120px;
    background: var(--glow-accent);
}

.hero__bg-glow--bottom {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -180px;
    background: rgba(255, 255, 255, 0.04);
}

/* -- Brasão decorativo (borda inferior) -- */
.hero__brasao {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 420px;
    max-width: 55vw;
    height: auto;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    -webkit-user-drag: none;
}

/* -- Container -- */
.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* -- Logo -- */
.hero__logo {
    width: clamp(130px, 22vw, 200px);
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* -- Headline -- */
.hero__title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(1.55rem, 4.2vw, 2.4rem);
    line-height: 1.22;
    color: var(--color-white);
    letter-spacing: -0.01em;
    max-width: 700px;
}

.hero__highlight {
    color: var(--color-accent);
}

/* -- Subtitle -- */
.hero__subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    line-height: 1.65;
    color: var(--color-white-soft);
    max-width: 620px;
}

/* =============================================
   VSL (Video Sales Letter)
   ============================================= */
.hero__vsl {
    width: 100%;
    max-width: 680px;
}

.hero__vsl-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #0d0d0d;
    box-shadow: var(--shadow-vsl);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.hero__vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* -- VSL Placeholder (quando não há vídeo) -- */
.hero__vsl-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d0d 100%);
    cursor: pointer;
    transition: background var(--transition-base);
}

.hero__vsl-placeholder:hover .hero__vsl-play {
    transform: scale(1.08);
    box-shadow: 0 0 40px var(--color-accent-glow), 0 0 80px rgba(255, 125, 192, 0.15);
}

.hero__vsl-play {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--color-accent-glow);
    transition: all var(--transition-smooth);
}

.hero__vsl-play i {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-left: 3px;
    /* compensação óptica do ícone play */
}

.hero__vsl-play-label {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =============================================
   CTA BUTTON
   ============================================= */
.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    color: var(--color-white);
    background: var(--color-accent);
    padding: 16px 38px;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-cta);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta-hover);
    background: #ff8ec9;
}

.hero__cta:active {
    transform: translateY(-1px);
}

.hero__cta i.fa-arrow-down {
    font-size: 0.85rem;
    animation: bounceDown 1.8s ease-in-out infinite;
}

.hero__cta i.fa-arrow-right {
    font-size: 0.85rem;
    animation: bounceRight 1.8s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

/* =============================================
   ANIMATIONS — Entrada
   ============================================= */
.hero__logo,
.hero__text,
.hero__vsl,
.hero__subtitle,
.hero__cta,
.method__header,
.method__card,
.bonus__header,
.bonus__highlight-card,
.bonus__item,
.bonus__action,
.offer__card {
    opacity: 0;
    transform: translateY(22px);
}

.hero__logo.is-visible,
.hero__text.is-visible,
.hero__vsl.is-visible,
.hero__subtitle.is-visible,
.hero__cta.is-visible,
.method__header.is-visible,
.method__card.is-visible,
.bonus__header.is-visible,
.bonus__highlight-card.is-visible,
.bonus__item.is-visible,
.bonus__action.is-visible,
.offer__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__logo {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0s;
}

.hero__text {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.12s;
}

.hero__vsl {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.28s;
}

.hero__subtitle {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.42s;
}

.hero__cta {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.56s;
}

.method__header {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.1s;
}

.method__card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.method__card:nth-child(1) {
    transition-delay: 0.1s;
}

.method__card:nth-child(2) {
    transition-delay: 0.2s;
}

.method__card:nth-child(3) {
    transition-delay: 0.3s;
}

.method__card:nth-child(4) {
    transition-delay: 0.4s;
}

.method__card:nth-child(5) {
    transition-delay: 0.5s;
}

.method__card:nth-child(6) {
    transition-delay: 0.6s;
}

.bonus__header {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.1s;
}

.bonus__highlight-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
}

.bonus__item {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bonus__item:nth-child(1) {
    transition-delay: 0.3s;
}

.bonus__item:nth-child(2) {
    transition-delay: 0.4s;
}

.bonus__item:nth-child(3) {
    transition-delay: 0.5s;
}

.bonus__item:nth-child(4) {
    transition-delay: 0.6s;
}

.bonus__action {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.7s;
}

.offer__card {
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.1s;
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */

/* Tablets */
@media (max-width: 768px) {
    .hero__container {
        padding: 32px 20px 28px;
        gap: 20px;
    }

    .hero__title {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    }

    .hero__vsl-play {
        width: 58px;
        height: 58px;
    }

    .hero__vsl-play i {
        font-size: 1.1rem;
    }

    .hero__cta {
        padding: 14px 32px;
        font-size: 0.92rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero__container {
        padding: 24px 16px 24px;
        gap: 18px;
    }

    .hero__logo {
        width: 120px;
    }

    .hero__title {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
    }

    .hero__subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero__vsl-play {
        width: 52px;
        height: 52px;
    }

    .hero__vsl-play i {
        font-size: 1rem;
    }

    .hero__cta {
        width: 100%;
        padding: 15px 24px;
        font-size: 0.9rem;
    }

    .hero__bg-glow--top {
        width: 280px;
        height: 280px;
        top: -100px;
        right: -80px;
    }

    .hero__bg-glow--bottom {
        width: 320px;
        height: 320px;
        bottom: -120px;
        left: -100px;
    }

    .hero__brasao {
        width: 260px;
    }
}

/* Telas altas — manter centralizado */
@media (min-height: 900px) {
    .hero__container {
        gap: 28px;
    }
}

/* =============================================
   SEÇÃO 02: MÉTODO / ENTREGÁVEIS
   ============================================= */
.method {
    background-color: #ffffff;
    color: #1a1a2e;
    /* Contraste para fundo branco */
    padding: 96px 24px;
    position: relative;
    z-index: 2;
}

.method__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method__header {
    text-align: center;
    max-width: 720px;
    margin-bottom: 64px;
}

.method__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(151, 5, 184, 0.1);
    color: var(--color-bg-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
}

.method__title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #0d0d0d;
}

.method__highlight {
    color: var(--color-bg);
    /* Roxo principal */
}

.method__subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.method__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.method__card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all var(--transition-base);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.method__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(151, 5, 184, 0.08);
    border-color: rgba(151, 5, 184, 0.2);
}

.method__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(151, 5, 184, 0.08);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.method__card:hover .method__icon {
    background: var(--color-bg);
    color: #ffffff;
    transform: scale(1.05);
}

.method__card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.method__card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Destaque para o Grupo do WhatsApp */
.method__card--highlight {
    border-color: rgba(37, 211, 102, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
}

.method__icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.method__card--highlight:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.12);
}

.method__card--highlight:hover .method__icon--whatsapp {
    background: #25D366;
    color: #ffffff;
}

/* Responsividade - Seção Método */
@media (max-width: 992px) {
    .method__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .method {
        padding: 72px 20px;
    }

    .method__header {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .method__grid {
        grid-template-columns: 1fr;
    }

    .method {
        padding: 60px 16px;
    }

    .method__card {
        padding: 32px 24px;
    }
}

/* =============================================
   SEÇÃO 04: BÔNUS (COMPACTO & ELEGANTE)
   ============================================= */
.bonus {
    background-color: #ffffff;
    color: #1a1a2e;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.bonus__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus__header {
    text-align: center;
    max-width: 680px;
    margin-bottom: 56px;
}

.bonus__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(151, 5, 184, 0.1);
    color: var(--color-bg-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
}

.bonus__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0d0d0d;
}

.bonus__highlight {
    color: var(--color-bg);
    /* Roxo da marca */
}

.bonus__subtitle {
    font-size: 1.05rem;
    color: #55556a;
    line-height: 1.6;
}

/* Highlight Card (B1) */
.bonus__highlight-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(151, 5, 184, 0.08);
    padding: 32px;
    gap: 32px;
    border: 1px solid rgba(151, 5, 184, 0.15);
    margin-bottom: 24px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bonus__highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: glassShine 8s infinite;
    /* Tempo aumentado para o brilho passar de forma mais suave */
    z-index: 10;
    /* Z-index alto para passar POR CIMA da imagem e do texto, criando o brilho real */
    pointer-events: none;
}

@keyframes glassShine {
    0% {
        left: -150%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.bonus__highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(151, 5, 184, 0.15);
}

.bonus__highlight-img {
    position: relative;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* Acima do efeito shine */
}

.bonus__highlight-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Não corta a imagem */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bonus__tag {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 125, 192, 0.4);
    z-index: 2;
}

.bonus__highlight-info {
    flex: 1;
    position: relative;
    z-index: 2;
    /* Acima do efeito shine */
}

.bonus__highlight-info h3 {
    font-size: 1.6rem;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.bonus__highlight-info p {
    font-size: 1.05rem;
    color: #55556a;
    line-height: 1.6;
}

/* Grid de Bônus Compacto (B2-B5) */
.bonus__grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.bonus__item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 20px;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
    transition: all var(--transition-base);
}

.bonus__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(151, 5, 184, 0.08);
    border-color: rgba(151, 5, 184, 0.2);
}


.bonus__item-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #faf5ff;
    border-radius: 12px;
    padding: 8px;
}

.bonus__item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Não corta a imagem */
}

.bonus__item-info {
    flex: 1;
}

.bonus__item-info h4 {
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-weight: 700;
}

.bonus__item-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.bonus__action {
    margin-top: 48px;
}

/* Responsividade - Bônus Compacto */
@media (max-width: 900px) {
    .bonus__highlight-img {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .bonus {
        padding: 64px 20px;
    }

    .bonus__highlight-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .bonus__highlight-img {
        width: 220px;
        margin-bottom: 16px;
    }

    .bonus__tag {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .bonus__grid-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 56px 16px;
    }

    .bonus__item {
        flex-direction: row;
        /* Mantém lado a lado no mobile se possível */
        padding: 16px;
        gap: 16px;
    }

    .bonus__item-img {
        width: 76px;
        height: 76px;
    }
}

/* =============================================
   SEÇÃO 05: OFERTA
   ============================================= */
.offer {
    background: #ffffff;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.offer__container {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.offer__card {
    position: relative;
    width: 100%;
    background: linear-gradient(165deg, var(--color-bg) 0%, #7a0496 100%);
    border-radius: var(--border-radius-lg);
    padding: 56px 44px;
    padding-top: 72px;
    /* Espaço extra para o ribbon não cortar */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(151, 5, 184, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Glow sutil atrás do card */
.offer__card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 125, 192, 0.15);
    filter: blur(80px);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
    z-index: 0;
}

/* Ribbon */
.offer__ribbon {
    position: absolute;
    top: 40px;
    right: -45px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 10px 70px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(40deg);
    box-shadow: 0 4px 12px rgba(255, 125, 192, 0.4);
    z-index: 5;
}

/* Desktop: fita centralizada no topo */
@media (min-width: 601px) {
    .offer__ribbon {
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0 0 12px 12px;
        padding: 10px 36px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Header */
.offer__header {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.offer__title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.offer__title-accent {
    color: var(--color-accent);
}

.offer__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    max-width: 420px;
}

/* Pricing */
.offer__pricing {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.offer__price-old {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer__price-de {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.offer__price-strike {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 600;
}

.offer__price-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.offer__price-por {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer__price-value {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.offer__currency {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 8px;
}

.offer__amount {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.offer__cents {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
}

.offer__cents small {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Checklist */
.offer__checklist {
    position: relative;
    z-index: 1;
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.offer__checklist li i {
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.offer__checklist-bonus {
    color: var(--color-accent) !important;
    font-weight: 700 !important;
}

/* CTA */
.offer__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 52px;
    background: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-cta);
    transition: all var(--transition-base);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.offer__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.offer__cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta-hover);
    background: #ff8ec9;
}

.offer__cta i {
    font-size: 0.85rem;
    animation: bounceDown 1.8s ease-in-out infinite;
}

/* Trust */
.offer__trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
}

.offer__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.offer__trust-item i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsividade - Oferta */
@media (max-width: 600px) {
    .offer {
        padding: 56px 16px;
    }

    .offer__card {
        padding: 48px 28px;
    }

    .offer__amount {
        font-size: 4rem;
    }

    .offer__cta {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .offer__trust {
        flex-direction: column;
        gap: 12px;
    }

    .offer__ribbon {
        right: -50px;
        top: 35px;
        font-size: 0.8rem;
        padding: 5px 40px;
    }
}

/* =============================================
   SEÇÃO 03: PROVA SOCIAL
   ============================================= */
.social-proof {
    background-color: var(--color-bg-dark);
    /* Fundo escuro para contrastar com a seção Método */
    color: var(--color-white);
    padding: 96px 24px;
    position: relative;
    z-index: 2;
}

.social-proof__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-proof__header {
    text-align: center;
    max-width: 720px;
    margin-bottom: 56px;
}

.social-proof__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 125, 192, 0.15);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
}

.social-proof__title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.social-proof__highlight {
    color: var(--color-accent);
}

.social-proof__subtitle {
    font-size: 1.1rem;
    color: var(--color-white-soft);
    line-height: 1.6;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
}

.social-proof__gallery {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 10px 0 20px 0;
    /* Padding extra para não cortar a sombra */
}

.social-proof__gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.social-proof__img {
    flex: 0 0 calc(33.333% - 14px);
    /* 3 itens visíveis no desktop */
    min-width: 280px;
    /* Largura mínima razoável */
    scroll-snap-align: center;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    object-fit: cover;
    aspect-ratio: 4 / 5;
    user-select: none;
    -webkit-user-drag: none;
}

.social-proof__img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 125, 192, 0.15);
}

.carousel-btn {
    position: absolute;
    z-index: 10;
    top: calc(50% - 10px);
    /* Ajuste por causa do padding da gallery */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 125, 192, 0.4);
}

.carousel-btn--prev {
    left: -24px;
}

.carousel-btn--next {
    right: -24px;
}

.social-proof__action {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsividade - Prova Social */
@media (max-width: 992px) {
    .social-proof__img {
        flex: 0 0 calc(50% - 10px);
        /* 2 itens */
    }
}

@media (max-width: 768px) {
    .social-proof {
        padding: 72px 20px;
    }

    .social-proof__header {
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        margin-bottom: 40px;
    }

    .social-proof__gallery {
        gap: 16px;
    }

    .carousel-btn {
        display: none;
        /* Esconde botões no mobile (usa swipe) */
    }
}

@media (max-width: 600px) {
    .social-proof {
        padding: 60px 16px;
    }

    .social-proof__img {
        flex: 0 0 85%;
        /* 1 item e pedaço do próximo para mostrar que rola */
    }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--color-bg-dark);
    padding: 48px 24px 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__logo {
    width: 140px;
    height: auto;
    opacity: 0.8;
    transition: all var(--transition-base);
}

.footer__logo:hover {
    opacity: 1;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-top: 12px;
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsividade - Footer e WPP */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}

/* =============================================
   SISTEMA DE DELAY — VSL Page
   ============================================= */

/* Esconde completamente os elementos durante o delay */
.delay-hidden {
    display: none !important;
}

