/* =====================================================
   ARQUIVO DE ESTILO PRINCIPAL
   Aqui você altera cores, tamanhos, espaçamentos e visual.
   ===================================================== */

* {
    margin: 0; /* REMOVE AS MARGENS PADRÃO */
    padding: 0; /* REMOVE OS ESPAÇAMENTOS PADRÃO */
    box-sizing: border-box; /* FAZ LARGURA/ALTURA CONSIDERAREM BORDAS E PADDINGS */
}

:root {
    /* AQUI FICAM AS CORES PRINCIPAIS DO SITE */
    --bg: #0b0614;              /* COR DE FUNDO */
    --bg-soft: #130a22;         /* FUNDO SECUNDÁRIO */
    --card: rgba(255,255,255,.06); /* FUNDO DOS CARDS */
    --card-strong: rgba(255,255,255,.10); /* FUNDO MAIS FORTE */
    --text: #f9f6ff;            /* COR PRINCIPAL DOS TEXTOS */
    --muted: #bcb3ca;           /* COR DOS TEXTOS SECUNDÁRIOS */
    --purple: #a855f7;          /* ROXO PRINCIPAL */
    --purple-dark: #6d28d9;     /* ROXO ESCURO */
    --pink: #ec4899;            /* ROSA DE DESTAQUE */
    --gold: #f5c96a;            /* DOURADO */
    --green: #25d366;           /* VERDE DO WHATSAPP */
    --blue: #229ed9;            /* AZUL DO TELEGRAM */
    --border: rgba(255,255,255,.11); /* COR DAS BORDAS */
    --shadow: 0 25px 80px rgba(0,0,0,.42); /* SOMBRA PADRÃO */
}

html { scroll-behavior: smooth; /* ROLAGEM SUAVE */ }

body {
    font-family: "Inter", sans-serif; /* FONTE PRINCIPAL */
    background:
        radial-gradient(circle at 10% 10%, rgba(168,85,247,.13), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(236,72,153,.08), transparent 26%),
        var(--bg); /* FUNDO COM GRADIENTES */
    color: var(--text); /* COR GERAL DOS TEXTOS */
    line-height: 1.6; /* ALTURA DAS LINHAS */
    overflow-x: hidden; /* EVITA ROLAGEM HORIZONTAL */
}

body.menu-open { overflow: hidden; /* TRAVA O FUNDO QUANDO MENU MOBILE ABRE */ }
a { color: inherit; text-decoration: none; /* REMOVE SUBLINHADO DOS LINKS */ }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; /* FAZ IMAGENS NÃO ESTOURAREM O CONTAINER */ }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; /* CENTRALIZA O CONTEÚDO */ }

/* BRILHOS DECORATIVOS DO FUNDO */
.page-glow {
    position: fixed; width: 420px; height: 420px; border-radius: 50%;
    filter: blur(120px); opacity: .16; pointer-events: none; z-index: -1;
}
.glow-one { background: var(--purple); top: -170px; left: -150px; }
.glow-two { background: var(--pink); right: -180px; bottom: 0; }

/* CABEÇALHO */
.site-header {
    position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px);
    background: rgba(11,6,20,.74); border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-content { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
    width: 58px; height: 58px; object-fit: cover; border-radius: 18px; /* TAMANHO DA LOGO */
    border: 1px solid rgba(245,201,106,.25);
    box-shadow: 0 10px 28px rgba(245,201,106,.16);
    background: #fff;
}
.brand strong { display: block; font-family: "Playfair Display", serif; font-size: 22px; line-height: 1; }
.brand small { display: block; margin-top: 5px; font-weight: 700; letter-spacing: 4px; font-size: 8px; color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { color: var(--muted); font-size: 14px; font-weight: 600; transition: .25s ease; }
.main-nav > a:hover { color: white; }
.main-nav .nav-cta { color: #1a1120; padding: 11px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), #fff0ad); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 13px; background: var(--card); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: white; margin: 4px auto; transition: .25s ease; }

/* HERO */
.hero { padding: 90px 0 20px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow, .section-kicker { color: var(--gold); font-size: 12px; letter-spacing: 2.2px; font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 10px 14px; border: 1px solid rgba(245,201,106,.23); background: rgba(245,201,106,.07); border-radius: 999px; }
.pulse { width: 8px; height: 8px; background: #44f28b; border-radius: 50%; box-shadow: 0 0 0 0 rgba(68,242,139,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(68,242,139,0); } 100% { box-shadow: 0 0 0 0 rgba(68,242,139,0); } }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(49px, 6vw, 78px); line-height: .98; letter-spacing: -2.5px; max-width: 720px; }
.hero h1 span, .section-heading h2 span { background: linear-gradient(90deg, var(--gold), #fff2b8, var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text { max-width: 620px; margin: 25px 0 30px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { min-height: 58px; padding: 0 23px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c49); box-shadow: 0 16px 34px rgba(37,211,102,.18); }
.btn-telegram { background: linear-gradient(135deg, #2bb5ee, #137bbd); box-shadow: 0 16px 34px rgba(34,158,217,.18); }
.btn-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
/* ÍCONES OFICIAIS DAS REDES SOCIAIS */
.social-svg svg { width: 21px; height: 21px; display: block; color: #fff; }
.float-social-icon svg { width: 18px; height: 18px; display: block; color: #fff; }

.trust-row { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; margin-left: -8px; border: 2px solid var(--bg); background: linear-gradient(135deg, var(--purple), var(--pink)); font-weight: 800; font-size: 12px; }
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 12px; }
.trust-row p { color: var(--muted); font-size: 12px; }
.trust-row strong { color: white; }

/* CARD DA HERO */
.hero-card-wrap { min-height: 510px; position: relative; display: grid; place-items: center; }
.hero-card { width: min(430px, 100%); padding: 28px; border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); border: 1px solid rgba(255,255,255,.15); box-shadow: var(--shadow); backdrop-filter: blur(18px); transform: rotate(2deg); position: relative; }
.hero-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(245,201,106,.65), transparent 30%, rgba(168,85,247,.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.card-top, .card-footer, .price-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.mini-label { color: var(--gold); font-size: 10px; letter-spacing: 2px; font-weight: 800; }
.card-top h2 { font-family: "Playfair Display", serif; font-size: 27px; line-height: 1.1; margin-top: 6px; }
.discount-badge { min-width: 70px; height: 70px; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(135deg, var(--pink), #be185d); font-size: 18px; font-weight: 900; transform: rotate(7deg); }
.product-visual { height: 230px; margin: 24px 0; display: grid; place-items: center; border-radius: 24px; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(245,201,106,.25), transparent 40%), linear-gradient(135deg, #3b1760, #1a0d2b); }
/* IMAGEM DO PRODUTO NO CARD "ACHADO DO DIA" */
.product-image {
    width: 82%; /* AQUI MUDA A LARGURA DA IMAGEM */
    height: 82%; /* AQUI MUDA A ALTURA DA IMAGEM */
    object-fit: contain; /* NÃO DEIXA A IMAGEM ESTICAR */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 22px 25px rgba(0,0,0,.35));
    transition: transform .3s ease;
}
.hero-card:hover .product-image { transform: scale(1.05); }

.bag { width: 126px; height: 150px; border-radius: 16px 16px 30px 30px; background: linear-gradient(145deg, #f9de87, #c99432); position: relative; box-shadow: 0 22px 45px rgba(245,201,106,.22); }
.bag-handle { position: absolute; width: 60px; height: 42px; border: 9px solid #e6b54a; border-bottom: 0; border-radius: 30px 30px 0 0; left: 50%; top: -30px; transform: translateX(-50%); }
.bag-star { position: absolute; inset: 0; display: grid; place-items: center; color: #3e1d4f; font-size: 50px; }
.spark { position: absolute; color: var(--gold); animation: float 3s ease-in-out infinite; }
.spark-1 { top: 25px; left: 50px; font-size: 25px; }
.spark-2 { right: 50px; bottom: 25px; font-size: 18px; animation-delay: .9s; }
@keyframes float { 50% { transform: translateY(-10px) rotate(8deg); } }
.price-line { align-items: flex-end; }
.price-line span { color: var(--muted); font-size: 13px; }
.price-line strong { font-size: 26px; color: var(--gold); }
.card-footer { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.live-dot { position: relative; padding-left: 14px; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #44f28b; position: absolute; left: 0; top: 6px; }
.floating-note { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 17px; background: rgba(20,10,34,.92); border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-note > span { font-size: 24px; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 13px; }
.floating-note small { color: var(--muted); font-size: 10px; }
.note-one { left: -15px; top: 88px; }
.note-two { right: -18px; bottom: 85px; }

/* FAIXA DE PROVAS */
.proof-strip { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); background: rgba(255,255,255,.035); border-radius: 22px; overflow: hidden; }
.proof-strip > div { padding: 22px; text-align: center; border-right: 1px solid var(--border); }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--gold); font-size: 17px; }
.proof-strip span { color: var(--muted); font-size: 11px; }

/* SEÇÕES GERAIS */
.section { padding: 105px 0; }
.section-heading { margin-bottom: 48px; }
.section-heading.centered { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 54px; }
.section-heading h2 { margin-top: 12px; font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 55px); line-height: 1.08; letter-spacing: -1.2px; }
.section-heading p { margin-top: 16px; color: var(--muted); max-width: 640px; }
.centered p { margin-inline: auto; }
.benefits-grid, .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card, .testimonial { padding: 30px; border: 1px solid var(--border); background: var(--card); border-radius: 24px; position: relative; transition: transform .25s ease, border-color .25s ease; }
.benefit-card:hover, .testimonial:hover, .category-card:hover { transform: translateY(-6px); border-color: rgba(245,201,106,.35); }
.benefit-card.featured, .testimonial.featured { background: linear-gradient(145deg, rgba(168,85,247,.16), rgba(255,255,255,.055)); border-color: rgba(168,85,247,.35); }
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; font-size: 26px; background: rgba(245,201,106,.10); border: 1px solid rgba(245,201,106,.20); }
.benefit-card h3, .category-card h3, .step h3 { margin: 20px 0 8px; font-size: 19px; }
.benefit-card p, .category-card p, .step p, .testimonial p { color: var(--muted); font-size: 14px; }
.card-tag { position: absolute; right: 18px; top: 18px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; }

/* CATEGORIAS */
.category-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.split-heading p { max-width: 390px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { min-height: 250px; padding: 28px; border-radius: 24px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: .25s ease; }
.category-card > span { font-size: 42px; }
.category-card::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; right: -70px; bottom: -70px; opacity: .18; filter: blur(8px); }
.category-card.purple { background: linear-gradient(145deg, rgba(126,34,206,.23), rgba(255,255,255,.035)); }
.category-card.purple::after { background: var(--purple); }
.category-card.pink { background: linear-gradient(145deg, rgba(190,24,93,.20), rgba(255,255,255,.035)); }
.category-card.pink::after { background: var(--pink); }
.category-card.gold { background: linear-gradient(145deg, rgba(202,138,4,.18), rgba(255,255,255,.035)); }
.category-card.gold::after { background: var(--gold); }
.category-card.blue { background: linear-gradient(145deg, rgba(2,132,199,.19), rgba(255,255,255,.035)); }
.category-card.blue::after { background: var(--blue); }

/* COMO FUNCIONA */
.steps { display: grid; grid-template-columns: 1fr 80px 1fr 80px 1fr; align-items: center; }
.step { text-align: center; position: relative; }
.step-number { color: rgba(255,255,255,.08); font-size: 70px; font-weight: 900; line-height: 1; }
.step-icon { width: 75px; height: 75px; display: grid; place-items: center; margin: -27px auto 0; border-radius: 24px; background: linear-gradient(145deg, rgba(245,201,106,.18), rgba(168,85,247,.14)); border: 1px solid var(--border); font-size: 30px; position: relative; }
.step-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,201,106,.55), transparent); }

/* DEPOIMENTOS */
.testimonials-section { background: linear-gradient(180deg, transparent, rgba(168,85,247,.045), transparent); }
.quote { font-family: "Playfair Display", serif; color: var(--gold); font-size: 58px; line-height: .8; }
.testimonial p { min-height: 115px; margin-top: 12px; font-size: 15px; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.person > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); font-weight: 800; font-size: 12px; }
.person strong, .person small { display: block; }
.person small { color: var(--muted); font-size: 10px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: var(--card); overflow: hidden; }
.faq-item button { width: 100%; min-height: 70px; padding: 0 22px; border: 0; background: transparent; color: white; display: flex; align-items: center; justify-content: space-between; text-align: left; font: inherit; font-weight: 700; cursor: pointer; }
.faq-item button span { font-size: 25px; color: var(--gold); transition: .25s ease; }
.faq-item.active button span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 22px 22px; color: var(--muted); font-size: 14px; }

/* CTA FINAL */
.final-cta { padding-top: 60px; }
.cta-box { padding: 70px 30px; text-align: center; border-radius: 34px; border: 1px solid rgba(245,201,106,.28); background: radial-gradient(circle at 50% 0%, rgba(245,201,106,.13), transparent 36%), linear-gradient(145deg, rgba(168,85,247,.15), rgba(255,255,255,.045)); position: relative; overflow: hidden; }
.cta-stars { color: var(--gold); letter-spacing: 18px; margin-bottom: 16px; }
.cta-box h2 { max-width: 760px; margin: 10px auto 16px; font-family: "Playfair Display", serif; font-size: clamp(38px, 5vw, 58px); line-height: 1.06; }
.cta-box p { color: var(--muted); margin-bottom: 28px; }
.centered-actions { justify-content: center; }
.cta-box > small { display: block; margin-top: 20px; color: var(--muted); }

/* RODAPÉ */
.site-footer { padding: 34px 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-logo { width: 46px; height: 46px; border-radius: 14px; }
.footer-brand strong { font-size: 18px; }
.footer-content p, .footer-links { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 18px; }

/* BOTÃO FLUTUANTE */
.social-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; }
.float-main { width: 58px; height: 58px; border-radius: 19px; border: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), #fff1b1); color: #211029; font-size: 24px; box-shadow: 0 15px 35px rgba(245,201,106,.25); cursor: pointer; }
.float-close { display: none; font-size: 33px; line-height: 1; }
.social-float.open .float-open { display: none; }
.social-float.open .float-close { display: block; }
.float-menu { position: absolute; right: 0; bottom: 70px; width: 185px; display: grid; gap: 9px; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.96); transition: .25s ease; }
.social-float.open .float-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.float-item { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-radius: 14px; background: rgba(19,10,34,.96); border: 1px solid var(--border); box-shadow: var(--shadow); font-size: 13px; }
.float-item span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; }
.float-item.whatsapp span { background: var(--green); }
.float-item.telegram span { background: var(--blue); }
.float-item.instagram span { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.float-item.tiktok span { background: linear-gradient(135deg, #25f4ee, #111 48%, #fe2c55); }
.float-item.top-link span { background: rgba(255,255,255,.12); }

/* PROVA SOCIAL FLUTUANTE */
.social-proof { position: fixed; left: 22px; bottom: 22px; z-index: 70; max-width: 290px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 16px; background: rgba(19,10,34,.94); border: 1px solid var(--border); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: .35s ease; }
.social-proof.show { opacity: 1; visibility: visible; transform: translateY(0); }
.proof-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--purple), var(--pink)); font-weight: 800; }
.social-proof strong, .social-proof span { display: block; }
.social-proof strong { font-size: 12px; }
.social-proof span { color: var(--muted); font-size: 10px; }

/* RESPONSIVIDADE TABLET */
@media (max-width: 980px) {
    .menu-toggle { display: block; }
    .main-nav { position: fixed; top: 82px; left: 18px; right: 18px; padding: 22px; border-radius: 20px; background: rgba(19,10,34,.98); border: 1px solid var(--border); box-shadow: var(--shadow); display: grid; gap: 18px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
    .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav .nav-cta { text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-copy { text-align: center; }
    .eyebrow { margin-inline: auto; }
    .hero-text { margin-inline: auto; }
    .hero-actions, .trust-row { justify-content: center; }
    .hero-card-wrap { min-height: 500px; }
    .proof-strip { grid-template-columns: repeat(2, 1fr); }
    .proof-strip > div:nth-child(2) { border-right: 0; }
    .proof-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; gap: 30px; }
    .step-line { width: 1px; height: 35px; margin: auto; background: linear-gradient(180deg, transparent, rgba(245,201,106,.55), transparent); }
    .faq-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* RESPONSIVIDADE CELULAR */
@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1160px); }
    .header-content { height: 72px; }
    .brand-logo { width: 50px; height: 50px; }
    .main-nav { top: 72px; }
    .hero { padding-top: 58px; }
    .hero h1 { font-size: clamp(44px, 14vw, 61px); letter-spacing: -2px; }
    .hero-text { font-size: 16px; }
    .hero-actions { display: grid; }
    .btn { width: 100%; }
    .hero-card-wrap { min-height: 440px; }
    .hero-card { padding: 20px; transform: none; }
    .card-top h2 { font-size: 22px; }
    .discount-badge { min-width: 61px; height: 61px; font-size: 16px; }
    .product-visual { height: 190px; }
    .bag { width: 105px; height: 125px; }
    .price-line { display: block; }
    .price-line strong { display: block; margin-top: 2px; }
    .floating-note { padding: 10px 12px; }
    .note-one { left: 0; top: 55px; }
    .note-two { right: 0; bottom: 45px; }
    .proof-strip { margin-top: 50px; }
    .proof-strip > div { padding: 17px 10px; }
    .section { padding: 78px 0; }
    .benefits-grid, .testimonials-grid, .category-grid { grid-template-columns: 1fr; }
    .split-heading { display: block; }
    .category-card { min-height: 200px; }
    .testimonial p { min-height: auto; }
    .cta-box { padding: 52px 20px; }
    .footer-content { flex-direction: column; text-align: center; }
    .social-proof { left: 12px; right: 86px; bottom: 14px; }
    .social-float { right: 14px; bottom: 14px; }
    .float-main { width: 56px; height: 56px; }
}

@media (max-width: 430px) {
    .brand strong { font-size: 19px; }
    .hero h1 { font-size: 43px; }
    .trust-row { align-items: flex-start; text-align: left; }
    .floating-note { transform: scale(.9); }
    .note-one { left: -10px; }
    .note-two { right: -10px; }
    .social-proof { max-width: none; }
}


/* =====================================================
   TOQUE FEMININO PREMIUM - V1.4
   AQUI VOCÊ PODE AJUSTAR A IDENTIDADE ROSÉ E LILÁS.
   ===================================================== */
:root {
    --bg: #130b17; /* FUNDO AMEIXA ESCURO */
    --bg-soft: #211125; /* FUNDO SECUNDÁRIO ROSÉ */
    --text: #fff8fc; /* TEXTO PRINCIPAL MAIS SUAVE */
    --muted: #d5c0cf; /* TEXTO SECUNDÁRIO ROSADO */
    --purple: #c084fc; /* LILÁS DELICADO */
    --purple-dark: #8b5a9f; /* LILÁS ESCURO */
    --pink: #f472b6; /* ROSA PRINCIPAL */
    --gold: #f6c9d8; /* ROSÉ CLARO USADO NOS DETALHES */
    --border: rgba(255, 214, 232, .14);
    --shadow: 0 28px 85px rgba(39, 10, 35, .48);
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(244, 114, 182, .17), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(192, 132, 252, .14), transparent 27%),
        radial-gradient(circle at 50% 75%, rgba(251, 207, 232, .06), transparent 32%),
        var(--bg);
}

.site-header {
    background: rgba(19, 11, 23, .80);
    border-bottom-color: rgba(255, 214, 232, .08);
}

.brand-logo {
    border-color: rgba(244, 114, 182, .30);
    box-shadow: 0 12px 32px rgba(244, 114, 182, .18);
}

.brand small, .eyebrow, .section-kicker, .mini-label {
    color: #f8bfd8;
}

.main-nav .nav-cta, .float-main {
    background: linear-gradient(135deg, #f9c5da, #e9b5ff);
    color: #3a1731;
    box-shadow: 0 15px 36px rgba(244, 114, 182, .23);
}

.hero h1 span, .section-heading h2 span {
    background: linear-gradient(90deg, #ffd3e3, #f4a9cf, #d8b4fe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-card {
    background: linear-gradient(145deg, rgba(255, 229, 240, .11), rgba(116, 70, 112, .10));
    border-color: rgba(255, 211, 227, .20);
    transform: rotate(1deg);
}

.hero-card::before {
    background: linear-gradient(135deg, rgba(249, 197, 218, .82), transparent 34%, rgba(216, 180, 254, .45));
}

.product-visual {
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 213, 228, .24), transparent 42%),
        linear-gradient(135deg, #5b234d, #2a1230);
}

.discount-badge {
    background: linear-gradient(135deg, #f472b6, #c65d99);
    border-radius: 24px;
}

.price-line strong, .stars, .quote, .cta-stars { color: #ffc4dd; }

.benefit-card, .testimonial, .faq-item, .float-item {
    background: linear-gradient(145deg, rgba(255, 232, 242, .07), rgba(255, 255, 255, .035));
}

.benefit-card.featured, .testimonial.featured {
    background: linear-gradient(145deg, rgba(244, 114, 182, .17), rgba(192, 132, 252, .09));
    border-color: rgba(244, 114, 182, .32);
}

.benefit-icon, .step-icon {
    background: linear-gradient(145deg, rgba(249, 197, 218, .19), rgba(216, 180, 254, .13));
    border-color: rgba(255, 211, 227, .22);
}

.category-card.purple { background: linear-gradient(145deg, rgba(192,132,252,.22), rgba(255,232,242,.04)); }
.category-card.pink { background: linear-gradient(145deg, rgba(244,114,182,.23), rgba(255,232,242,.04)); }
.category-card.gold { background: linear-gradient(145deg, rgba(251,207,232,.18), rgba(255,232,242,.04)); }
.category-card.blue { background: linear-gradient(145deg, rgba(196,181,253,.18), rgba(255,232,242,.04)); }

.cta-box {
    border-color: rgba(249, 197, 218, .34);
    background:
        radial-gradient(circle at 50% 0%, rgba(249, 197, 218, .18), transparent 38%),
        linear-gradient(145deg, rgba(244,114,182,.13), rgba(192,132,252,.08));
}

.floating-note {
    background: rgba(36, 17, 39, .95);
    border-color: rgba(255, 211, 227, .16);
}

.proof-avatar, .person > span, .avatars span {
    background: linear-gradient(135deg, #f472b6, #b98ae6);
}

@media (max-width: 720px) {
    .hero-card { transform: none; }
}
