@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800;900&family=Fredoka+One&display=swap');

/* Fonte Handyman — coloque os arquivos em assets/fonts/ */
@font-face {
    font-family: 'Handyman';
    src: url('../fonts/Handyman.woff2') format('woff2'),
         url('../fonts/Handyman.woff')  format('woff'),
         url('../fonts/Handyman.ttf')   format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --indigo:      #2e0057;
    --indigo-mid:  #3d0070;
    --indigo-dark: #150030;
    --gold:        #ffc700;
    --white:       #ffffff;
    --muted:       rgba(255,255,255,0.70);
    --card-bg:     rgba(255,255,255,0.07);
    --card-border: rgba(255,255,255,0.11);
    --green:       #5dcc5d;
    --radius:      14px;
    --radius-sm:   8px;
    --radius-btn:  10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--indigo);
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
   URGENCY BAR
══════════════════════════════════════════ */
.urgency-bar {
    background: var(--gold);
    color: var(--indigo);
    text-align: center;
    padding: 11px 20px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    background: linear-gradient(170deg, #150030 0%, #2e0057 50%, #1e003d 100%);
    text-align: center;
    padding: 52px 20px 68px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,199,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo img {
    height: 52px;
    width: auto;
    display: inline-block;
}

.hero-product-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto 38px;
    /* sem border-radius nem box-shadow: imagem tem fundo transparente */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,199,0,0.10);
    border: 1px solid rgba(255,199,0,0.38);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Fredoka One', 'Jost', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: normal;
    line-height: 1.1;
    max-width: 820px;
    margin: 0 auto 18px;
    letter-spacing: 0.01em;
    color: var(--white);
}

.hero-sub {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* Price */
.hero-price { margin-bottom: 10px; }

.price-old {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-main {
    font-size: clamp(3rem, 9vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.price-main small {
    font-size: 0.4em;
    font-weight: 700;
    vertical-align: super;
}

.price-installments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.price-installments .fa-lock { color: var(--green); font-size: 0.8rem; }

/* ── Timer ── */
.timer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255,199,0,0.06);
    border: 1px solid rgba(255,199,0,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.timer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.timer-live {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-label .fa-clock { color: var(--gold); }

.timer-display {
    display: flex;
    gap: 2px;
    align-items: center;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-block {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    min-width: 26px;
    text-align: center;
}

.timer-unit-label {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
}

.timer-sep {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 900;
    padding: 0 2px;
    margin-bottom: 8px;
}

/* ── Timer estado expirado ── */
.timer-expired-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.timer-expired-msg .fa-triangle-exclamation {
    font-size: 1.5rem;
    color: #ff4444;
    animation: pulse-alert 0.8s ease-in-out infinite alternate;
}

.timer-expired-line1 {
    font-size: 1rem;
    font-weight: 900;
    color: #ff4444;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.timer-expired-line2 {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

@keyframes pulse-alert {
    from { opacity: 0.6; transform: scale(0.95); }
    to   { opacity: 1;   transform: scale(1.08); }
}

.timer-section.timer-expired {
    background: rgba(255,40,40,0.10);
    border-color: rgba(255,40,40,0.40);
    transition: background 0.4s, border-color 0.4s;
}

.timer-section.timer-expired .timer-live { display: none; }
.timer-section.timer-expired .timer-expired-msg { display: flex; }

/* ── CTA Buttons ── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--indigo);
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    font-weight: 900;
    text-decoration: none;
    padding: 20px 48px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(255,199,0,0.65);
}

.btn-cta:active { transform: translateY(0); }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 28px rgba(255,199,0,0.32); }
    50%       { box-shadow: 0 0 56px rgba(255,199,0,0.68); }
}

.btn-cta .fa-cart-shopping { font-size: 1.375em; transform: rotate(15deg); display: inline-block; }

/* Barra segura entre CTA e trust row */
.barra-segura {
    display: block;
    max-width: 340px;
    width: 100%;
    margin: 14px auto 0;
}

/* Trust row below button */
.btn-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
}

.trust-item .fa-lock,
.trust-item .fa-shield-halved,
.trust-item .fa-envelope { color: var(--green); font-size: 0.85em; }

/* ══════════════════════════════════════════
   SHARED / LAYOUT
══════════════════════════════════════════ */
section { padding: 72px 20px; }

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

.section-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 14px;
}

.includes-section .section-title {
    font-family: 'Fredoka One', 'Jost', sans-serif;
    font-weight: normal;
}

.section-title em { font-style: normal; color: var(--gold); }

.section-desc {
    text-align: center;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1.02rem;
}

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

/* ══════════════════════════════════════════
   INCLUDES SECTION
══════════════════════════════════════════ */
.includes-section {
    background: linear-gradient(180deg, #1e0040 0%, #2e0057 100%);
}

.includes-total {
    text-align: center;
    background: rgba(255,199,0,0.1);
    border: 2px solid rgba(255,199,0,0.45);
    border-radius: var(--radius);
    padding: 20px 32px;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.includes-total .it-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.includes-total .it-label .fa-fire {
    font-size: 1em;
    color: #ff6b2b;
}

.includes-total .it-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
}

.it-price-old {
    font-size: 1.05rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 600;
}

.it-price-now {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.it-price-now strong {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 900;
    display: inline-block;
    margin-left: 4px;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.cards-grid-bonus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Card with header image */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    /* sem overflow:hidden aqui — permite o ícone vazar para baixo */
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    border-color: rgba(255,199,0,0.38);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}

/* Card header: contém apenas a imagem com clip */
.card-header {
    position: relative;
    height: 130px;
    flex-shrink: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden; /* clip só na imagem */
}

.card-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* Ícone filho direto de .card — sobrepõe a divisória header/body */
.card-icon-wrap {
    position: absolute;
    top: 106px;   /* header tem 130px, ícone (52px) centralizado no limite */
    left: 20px;
    width: 52px;
    height: 52px;
    background: var(--indigo);
    border: 2px solid rgba(255,199,0,0.38);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    z-index: 3;   /* acima de header e body */
}

/* Card body */
.card-body {
    padding: 36px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge fixado no centro vertical do ícone, à sua direita */
/* centro do ícone: top 106px + height 52px / 2 = 132px */
.card-tag-pin {
    position: absolute;
    left: 84px;              /* 20px offset + 52px ícone + 12px gap */
    top: 132px;              /* centro vertical do ícone */
    transform: translateY(-50%);
}

.card-tag.included.card-tag-pin {
    background: #ffc700 !important;
    border-color: #2e0057 !important;
    color: #2e0057 !important;
}

.card-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    width: fit-content;
}

.card-tag.bonus {
    background: rgba(255,199,0,0.13);
    color: var(--gold);
    border: 1px solid rgba(255,199,0,0.35);
}

.card-tag.included {
    background: rgba(255,255,255,0.07);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.12);
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.card-pages {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
}

/* ══════════════════════════════════════════
   PROOF SECTION
══════════════════════════════════════════ */
.proof-section { background: var(--indigo); }

.proof-section .section-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 52px;
    flex-wrap: nowrap; /* sempre em linha única */
}

.stat {
    text-align: center;
    background: rgba(255,199,0,0.07);
    border: 1px solid rgba(255,199,0,0.22);
    border-radius: var(--radius);
    padding: 24px 12px;
    flex: 1;
    min-width: 0; /* permite encolher livremente */
    transition: border-color 0.2s, transform 0.2s;
}

.stat:hover {
    border-color: rgba(255,199,0,0.45);
    transform: translateY(-3px);
}

.stat-num {
    font-size: clamp(1.5rem, 4.5vw, 2.6rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,199,0,0.3);
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(0.6rem, 1.8vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-top: 8px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-shadow: 0 0 12px rgba(255,199,0,0.5);
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    flex: 1;
    margin-bottom: 18px;
    position: relative;
    padding-top: 28px;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: -4px;
    font-size: 4rem;
    font-style: normal;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,199,0,0.35);
    flex-shrink: 0;
}

.testimonial-author {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.testimonial-city {
    font-size: 0.74rem;
    color: var(--muted);
}

/* ══════════════════════════════════════════
   OFFER SECTION
══════════════════════════════════════════ */
.offer-section {
    background: linear-gradient(160deg, #150030 0%, #2e0057 100%);
    text-align: center;
}

.offer-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,199,0,0.26);
    border-radius: 20px;
    padding: 52px 40px 44px;
    max-width: 560px;
    margin: 0 auto;
}

.offer-includes {
    list-style: none;
    margin: 28px 0 36px;
    text-align: left;
}

.offer-includes li {
    font-size: 0.93rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

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

.offer-includes li .fa-circle-check {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 18px 20px;
    background: rgba(93,204,93,0.05);
    border: 1px solid rgba(93,204,93,0.2);
    border-radius: var(--radius-sm);
    text-align: left;
}

.guarantee-icon {
    font-size: 2rem;
    color: var(--green);
    flex-shrink: 0;
    line-height: 1;
}

.guarantee-text strong {
    display: block;
    font-size: 1.121rem;
    color: var(--white);
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    text-align: justify;
}

/* Security row */
.security-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--muted);
}

.security-item i { color: var(--green); font-size: 1rem; }

.delivery-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #110020;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.9;
}

footer a { color: rgba(255,255,255,0.35); text-decoration: none; }

.footer-legal-links {
    margin-top: 10px;
    font-size: 0.68rem;
}

.footer-legal-link {
    color: rgba(255,255,255,0.28) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.footer-legal-link:hover { color: rgba(255,255,255,0.55) !important; }

.footer-legal-sep { margin: 0 8px; }

/* ══════════════════════════════════════════
   MODAIS
══════════════════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.72);
}

.modal-overlay.modal-open { display: flex; }

.modal-box {
    background: var(--indigo-dark);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    max-height: 600px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--card-border);
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
}

.modal-close {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: rgba(255,255,255,0.18); }

.modal-body > div[style] {
    height: 100% !important;
    overflow: visible !important;
}

.modal-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 22px;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,199,0,0.3) transparent;
}

.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(255,199,0,0.3); border-radius: 10px; }

.modal-footer {
    padding: 16px 22px;
    border-top: 1px solid var(--card-border);
    flex-shrink: 0;
    text-align: center;
}

.modal-footer .btn-cta {
    width: 100%;
    font-size: 1rem;
    padding: 16px 24px;
    animation: none;
    box-shadow: 0 0 28px rgba(255,199,0,0.32);
}

@media (max-width: 720px) {
    .modal-box {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
    }

    .modal-overlay { align-items: flex-end; }
}

/* ══════════════════════════════════════════
   STICKY CTA (mobile only)
══════════════════════════════════════════ */
.sticky-cta {
    display: none; /* JS controla visibilidade; CSS controla o breakpoint */
}

@media (max-width: 720px) {
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: var(--gold);
        color: var(--indigo);
        font-family: 'Jost', sans-serif;
        font-size: 1.25rem;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 18px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 -4px 24px rgba(255,199,0,0.35);
        /* oculto por padrão — JS adiciona .sticky-cta--visible */
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sticky-cta--visible {
        transform: translateY(-7px); /* sobe para não sobrepor a barra de progresso */
    }

    .sticky-cta .fa-cart-shopping { font-size: 1.375em; transform: rotate(15deg); display: inline-block; }
}

/* ══════════════════════════════════════════
   SOCIAL SECTION
══════════════════════════════════════════ */
.social-section {
    background: linear-gradient(160deg, #1a0035 0%, #2e0057 100%);
    text-align: center;
}

.social-section .section-desc {
    max-width: 600px;
    margin-bottom: 36px;
}

.social-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: var(--radius-btn);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
}

.btn-social:hover { transform: translateY(-2px); }

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    box-shadow: 0 4px 20px rgba(253,29,29,0.3);
}

.btn-instagram:hover {
    box-shadow: 0 8px 30px rgba(253,29,29,0.45);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.social-followers {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.social-followers-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.social-followers-text {
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 720px) {
    .cards-grid         { grid-template-columns: 1fr; }
    .cards-grid-bonus   { grid-template-columns: 1fr; max-width: 100%; }
    .testimonials       { grid-template-columns: 1fr; }
    .stat               { padding: 18px 8px; }
    .stat-num--sm { font-size: clamp(1.2rem, 3.6vw, 2.08rem); }
    .offer-box          { padding: 36px 20px 32px; }
    .btn-cta            { width: 100%; max-width: 420px; font-size: 1.25rem; padding: 20px 24px; }
    section             { padding: 52px 20px; }
    .timer-section      { padding: 7px 16px; }
    .social-btns        { flex-direction: column; align-items: stretch; }
    .btn-social         { justify-content: center; }
    footer              { padding-bottom: 87px; } /* espaço para sticky-cta (80px) + barra (7px) */
}

/* ══════════════════════════════════════════
   BARRA DE PROGRESSO DE ROLAGEM
══════════════════════════════════════════ */
#scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #3A125F;
    z-index: 1000;
    pointer-events: none;
}

#scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: #FFC700;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

@media (max-width: 720px) {
    #scroll-progress { height: 7px; }
}

@media (min-width: 721px) and (max-width: 960px) {
    .cards-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials   { grid-template-columns: repeat(2, 1fr); }
}

.prazo-destaque {
  display: inline;
  white-space: nowrap;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: #f3d46b;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  font-weight: 600;
}