/* =========================================================
   Cão360 — Sistema visual (100% branding book oficial)
   Tokens: cao360_branding_book_design_system.json
   Verde #00C78B · Laranja #FF9200 · Fundo #F7F8FA · Nunito
   Cantos arredondados · sombras suaves · cards flutuantes
   Ajuste pró público 55–65: tipografia ampliada e contraste.
   ========================================================= */

:root {
  /* Marca */
  --verde: #00C78B;
  --verde-dark: #008F69;
  --verde-light: #E6F9F3;
  --laranja: #FF9200;
  --laranja-dark: #E67800;
  --laranja-light: #FFF1DC;

  /* Neutros (book) */
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --ink: #1E1E1E;          /* text_primary */
  --ink-2: #4B5563;        /* secundário (reforçado p/ contraste 55–65) */
  --muted: #6B7280;
  --border: #E5E7EB;
  --divider: #D1D5DB;

  /* Semânticos */
  --danger: #FF6B6B;

  /* Forma */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-soft: 0 8px 30px rgba(0,0,0,.06);
  --shadow-card: 0 12px 40px rgba(0,0,0,.08);
  --shadow-btn: 0 8px 20px rgba(0,199,139,.22);
  --shadow-btn-orange: 0 8px 20px rgba(255,146,0,.26);

  --container: 1200px;
  --sans: 'Nunito', 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 19px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--verde); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--white { background: var(--surface); }
.center { text-align: center; }
.narrow { max-width: 760px; }
.center.narrow { margin-left: auto; margin-right: auto; }

/* ---------- Tipografia (Nunito, arredondada e amigável) ---------- */
h1, h2, h3 { font-family: var(--sans); font-weight: 800; line-height: 1.14; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 620px; line-height: 1.55; }
.center .lead { margin-left: auto; margin-right: auto; }
strong { font-weight: 800; color: var(--ink); }
.text-verde { color: var(--verde-dark); }

/* Rótulo de seção (chip leve, no estilo do app) */
.label {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--verde-dark); background: var(--verde-light);
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.label .ic { width: 16px; height: 16px; }

/* ---------- Ícones SVG (Lucide, stroke 2) ---------- */
.ic { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }
.icon-badge { width: 56px; height: 56px; border-radius: 16px; background: var(--verde-light); color: var(--verde-dark); display: grid; place-items: center; flex: 0 0 auto; }
.icon-badge .ic { width: 30px; height: 30px; }

/* ---------- Botões (book: primário verde, accent laranja) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 1.1rem; cursor: pointer;
  padding: 16px 30px; min-height: 54px; border-radius: var(--r-md); border: 0; line-height: 1.25;
  text-align: center; text-wrap: balance;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn .btn-br { display: inline; }
@media (max-width: 520px) {
  .btn:has(.btn-br) { flex-wrap: wrap; row-gap: 2px; }
  .btn .btn-br { flex-basis: 100%; height: 0; overflow: hidden; }
}
.btn--lg { padding: 19px 38px; font-size: 1.15rem; min-height: 60px; }
.btn--full { width: 100%; }
.btn--verde { background: var(--verde); color: #fff; box-shadow: var(--shadow-btn); }
.btn--verde:hover { background: var(--verde-dark); transform: translateY(-2px); }
.btn--verde:active { transform: scale(.98); }
.btn--laranja { background: var(--laranja); color: #fff; box-shadow: var(--shadow-btn-orange); }
.btn--laranja:hover { background: var(--laranja-dark); transform: translateY(-2px); }
.btn--laranja:active { transform: scale(.98); }
.btn--ghost { background: var(--surface); color: var(--verde-dark); border: 1.5px solid var(--verde); }
.btn--ghost:hover { background: var(--verde-light); }
.btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-hint { display: block; font-size: .98rem; color: var(--muted); margin-top: 14px; font-weight: 700; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(247,248,250,.96); border-bottom: 1px solid var(--border); }
@supports (backdrop-filter: blur(8px)) { @media (min-width: 700px) { .header { background: rgba(247,248,250,.85); backdrop-filter: saturate(140%) blur(8px); } } }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 1.4rem; color: var(--ink); }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand .wordmark { display: inline-flex; gap: 0; letter-spacing: -.01em; }
.brand .b-verde { color: var(--verde-dark); } .brand .b-laranja { color: var(--laranja); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 700; font-size: 1rem; color: var(--ink-2); }
.nav a:hover { color: var(--verde-dark); }
.nav .btn { padding: 11px 22px; min-height: 0; font-size: .98rem; }
@media (max-width: 900px) { .nav a:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 70px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -160px; right: -140px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(0,199,139,.14), rgba(0,199,139,0) 66%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -180px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,146,0,.10), rgba(255,146,0,0) 66%); pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 14px 50px; align-items: center; grid-template-areas: "head art" "tail art"; }
.hero-head { grid-area: head; align-self: end; }
.hero-art { grid-area: art; }
.hero-tail { grid-area: tail; align-self: start; }
.hero h1 .grad { background: linear-gradient(120deg, var(--verde-dark), var(--verde)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin: 22px 0 32px; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .96rem; color: var(--verde-dark); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-soft); padding: 9px 16px; border-radius: var(--r-pill); }
.pill .ic { width: 18px; height: 18px; color: var(--verde); }

/* Hero art — mockup do app + mascote */
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art .mockup { width: min(360px, 88%); height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.14)); position: relative; z-index: 2; animation: floaty 6s ease-in-out infinite; }
.hero-art .mascote-peek { position: absolute; z-index: 3; width: 130px; bottom: -6px; right: 4%; animation: floaty 5s ease-in-out infinite .4s; }
.hero-blob { position: absolute; z-index: 1; width: 92%; aspect-ratio: 1; border-radius: 46% 54% 52% 48%; background: linear-gradient(135deg, var(--verde-light), #FFF6E9); }
@media (max-width: 900px) {
  .hero { padding: 28px 0 40px; }
  .hero .container { grid-template-columns: 1fr; grid-template-areas: "head" "art" "tail"; gap: 18px; }
  .hero-cta { align-items: stretch; } .hero-cta .btn { width: 100%; }
  .hero-art { margin-top: 0; }
  .hero-head .lead { margin-bottom: 0; }
  .hero-tail .hero-pills { margin-top: 18px; }
  .label { margin-bottom: 14px; }
}

/* ---------- Faixa de confiança ---------- */
.trust-strip { background: var(--verde); color: #eafff8; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 24px; }
.trust-strip .item { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1rem; }
.trust-strip .item .ic { width: 25px; height: 25px; color: #fff; flex: 0 0 auto; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--3, .grid--5 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-soft); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 1.02rem; }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-soft); }
.step .num { width: 50px; height: 50px; border-radius: 50%; background: var(--verde-light); color: var(--verde-dark); font-weight: 900; font-size: 1.4rem; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 1.02rem; }

/* ---------- Bloco com mascote (dica) ---------- */
.dica { display: flex; align-items: center; gap: 26px; background: var(--laranja-light); border-radius: var(--r-lg); padding: 30px 34px; box-shadow: var(--shadow-soft); }
.dica img { width: 124px; flex: 0 0 auto; }
.dica h3 { color: var(--laranja-dark); margin-bottom: 6px; }
.dica p { color: #8a5a13; font-weight: 600; }
@media (max-width: 560px) { .dica { flex-direction: column; text-align: center; } }

/* ---------- Bloco história (lifestyle) ---------- */
.story { display: grid; grid-template-columns: 1.02fr 1fr; gap: 48px; align-items: center; }
.story__img { border-radius: var(--r-lg); box-shadow: var(--shadow-card); width: 100%; height: auto; }
.story ul { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.story ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 1.05rem; }
.story ul li .ic { width: 22px; height: 22px; color: var(--verde); flex: 0 0 auto; margin-top: 3px; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Prova social ---------- */
.depo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.depo-grid .depo:nth-child(5) { grid-column: 1 / -1; max-width: 720px; margin: 0 auto; width: 100%; }
@media (max-width: 820px) { .depo-grid { grid-template-columns: 1fr; } .depo-grid .depo:nth-child(5) { max-width: 100%; } }

.depo { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: start; }
.depo__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--verde-light); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.depo__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.depo__tag { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; color: var(--verde-dark); background: var(--verde-light); padding: 5px 11px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .05em; }
.depo__tag .ic { width: 14px; height: 14px; }
.depo .stars { color: var(--laranja); font-size: 1rem; letter-spacing: 2px; }
.depo p { font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.depo p .hl { background: linear-gradient(transparent 60%, #FFF1DC 60%); padding: 0 2px; font-weight: 700; }
.depo__autor { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border); }
.depo__autor b { display: block; font-size: 1rem; color: var(--ink); }
.depo__autor small { color: var(--muted); font-weight: 600; font-size: .92rem; display: block; line-height: 1.4; }
@media (max-width: 560px) {
  .depo { grid-template-columns: 1fr; padding: 24px; }
  .depo__photo { width: 80px; height: 80px; }
}

/* ---------- Preço ---------- */
.preco-card { max-width: 480px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.preco-card__head { background: var(--verde); color: #fff; text-align: center; padding: 16px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; }
.preco-card__body { padding: 36px 34px; text-align: center; }
.preco-valor { font-size: 3.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.preco-valor small { font-size: 1.15rem; color: var(--muted); font-weight: 700; }
.preco-lista { list-style: none; text-align: left; margin: 26px 0; display: grid; gap: 13px; }
.preco-lista li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 1.02rem; }
.preco-lista li .ic { width: 22px; height: 22px; color: var(--verde); flex: 0 0 auto; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 13px; overflow: hidden; box-shadow: var(--shadow-soft); }
.faq summary { cursor: pointer; padding: 21px 24px; font-weight: 800; font-size: 1.12rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--verde); font-size: 1.7rem; font-weight: 700; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--ink-2); font-size: 1.05rem; }
.faq details p a { color: var(--verde-dark); text-decoration: underline; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%); color: #eafff8; border-radius: var(--r-lg); padding: 58px 44px; text-align: center; overflow: hidden; }
.cta-final .mascote-cta { position: absolute; right: 5%; bottom: 0; width: 150px; opacity: .96; }
.cta-final h2 { color: #fff; position: relative; }
.cta-final .lead { color: rgba(255,255,255,.94); margin: 16px auto 28px; position: relative; }
@media (max-width: 760px) { .cta-final .mascote-cta { display: none; } }

/* ---------- Disclaimer / Footer ---------- */
.disclaimer { background: var(--bg); border-top: 1px solid var(--border); }
.disclaimer .container { padding: 26px 24px; }
.disclaimer p { font-size: .95rem; color: var(--muted); max-width: 840px; margin: 0 auto; text-align: center; line-height: 1.55; }
.footer { background: var(--ink); color: #b9c2bd; padding: 48px 0 30px; }
.footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
.footer .brand { color: #fff; } .footer .brand .b-verde { color: var(--verde); } .footer .brand .b-laranja { color: var(--laranja); }
.footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer nav a { color: #b9c2bd; font-weight: 700; font-size: .98rem; }
.footer nav a:hover { color: #fff; }
.footer .copy { width: 100%; border-top: 1px solid rgba(255,255,255,.12); margin-top: 22px; padding-top: 20px; font-size: .9rem; color: #8a958f; }

/* ---------- Quiz ---------- */
.quiz-wrap { max-width: 640px; margin: 0 auto; }
.quiz-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 38px 34px; box-shadow: var(--shadow-card); }
.quiz-progress { height: 10px; background: var(--border); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 28px; }
.quiz-progress span { display: block; height: 100%; background: var(--verde); width: 25%; border-radius: var(--r-pill); transition: width .4s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-step h3 { font-size: 1.55rem; margin-bottom: 6px; }
.quiz-step .q-sub { color: var(--ink-2); margin-bottom: 24px; font-size: 1.05rem; }
.opts { display: grid; gap: 12px; }
.opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer; background: var(--surface); border: 2px solid var(--border); border-radius: var(--r-md); padding: 17px 20px; font-family: var(--sans); font-weight: 700; font-size: 1.08rem; color: var(--ink); transition: all .15s; }
.opt:hover { border-color: var(--verde); background: var(--verde-light); }
.opt.sel { border-color: var(--verde); background: var(--verde-light); }
.opt .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--divider); flex: 0 0 auto; display: grid; place-items: center; transition: all .15s; }
.opt.sel .dot { border-color: var(--verde); background: var(--verde); }
.opt.sel .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.q-field { margin-bottom: 18px; }
.q-field label { display: block; font-weight: 800; margin-bottom: 8px; font-size: 1.02rem; color: var(--ink); }
.q-field input, .q-field select { width: 100%; font-family: var(--sans); font-size: 1.08rem; font-weight: 600; padding: 15px 17px; border: 2px solid var(--border); border-radius: var(--r-sm); background: var(--surface); color: var(--ink); }
.q-field input:focus, .q-field select:focus { outline: none; border-color: var(--verde); }
.sex-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chip-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.chip-opt { background: var(--surface); border: 2px solid var(--border); border-radius: var(--r-sm); padding: 12px 8px; font-family: var(--sans); cursor: pointer; transition: all .15s; color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 70px; }
.chip-opt:hover { border-color: var(--verde); background: var(--verde-light); }
.chip-opt.sel { border-color: var(--verde); background: var(--verde-light); }
.chip-opt b { font-size: 1rem; font-weight: 800; color: var(--ink); }
.chip-opt small { font-size: .82rem; font-weight: 600; color: var(--muted); }
.chip-opt.sel small { color: var(--verde-dark); }
@media (max-width: 380px) { .chip-opt b { font-size: .92rem; } .chip-opt small { font-size: .76rem; } }
.sex-opt { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px; font-family: var(--sans); font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all .15s; color: var(--ink); }
.sex-opt:hover { border-color: var(--verde); background: var(--verde-light); }
.sex-opt.sel { border-color: var(--verde); background: var(--verde-light); }
.sex-ico { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.sex-ico .ic { width: 20px; height: 20px; stroke-width: 2.4; }
.sex-ico--m { background: #E0F0FF; color: #1f6fc4; }
.sex-ico--f { background: #FFE4EE; color: #c43a72; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.quiz-nav--solo { justify-content: center; }
.quiz-nav--solo .btn { min-width: 260px; }
@media (max-width: 560px) { .quiz-nav--solo .btn { width: 100%; min-width: 0; } }
.quiz-back { background: transparent; border: 0; color: var(--muted); font-weight: 800; cursor: pointer; font-family: var(--sans); font-size: 1.02rem; }
.quiz-back:hover { color: var(--verde-dark); }

/* Resultado */
.result { text-align: center; }
.result .mascote-result { width: 120px; margin: 0 auto 6px; animation: floaty 5s ease-in-out infinite; }
.result h3 { font-size: 1.75rem; }
.result .resumo { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 22px; margin: 22px 0; text-align: left; }
.result .resumo .row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed var(--divider); }
.result .resumo .row:last-child { border-bottom: 0; }
.result .resumo .row span:first-child { color: var(--muted); font-weight: 700; }
.result .resumo .row span:last-child { font-weight: 800; color: var(--ink); text-align: right; }
.vet-alert { background: var(--laranja-light); border: 1px solid var(--laranja); border-radius: var(--r-md); padding: 17px 20px; color: var(--laranja-dark); font-weight: 600; font-size: .98rem; margin: 20px 0; text-align: left; line-height: 1.5; display: flex; gap: 12px; }
.vet-alert .ic { width: 26px; height: 26px; flex: 0 0 auto; margin-top: 2px; }
.preco-mini { font-size: 2.7rem; font-weight: 900; margin: 12px 0 4px; color: var(--ink); }
.preco-mini small { font-size: 1.02rem; color: var(--muted); font-weight: 700; }

/* ---------- Quiz: opções com ícone (Q1) ---------- */
.opts--icon { gap: 14px; }
.opt--icon { display: grid !important; grid-template-columns: 56px 1fr 22px; gap: 16px; padding: 16px 20px; align-items: center; }
.opt--icon .opt-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--verde-light); color: var(--verde-dark); display: grid; place-items: center; transition: background .15s, color .15s; }
.opt--icon .opt-ico .ic { width: 28px; height: 28px; }
.opt--icon .opt-lab b { display: block; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.opt--icon .opt-lab small { display: block; font-size: .95rem; color: var(--ink-2); font-weight: 600; line-height: 1.35; margin-top: 2px; }
.opt--icon:hover .opt-ico { background: var(--verde); color: #fff; }
.opt--icon.sel .opt-ico { background: var(--verde); color: #fff; }
@media (max-width: 480px) { .opt--icon { grid-template-columns: 46px 1fr 20px; gap: 12px; padding: 14px 16px; } .opt--icon .opt-ico { width: 46px; height: 46px; } .opt--icon .opt-ico .ic { width: 24px; height: 24px; } .opt--icon .opt-lab b { font-size: 1rem; } .opt--icon .opt-lab small { font-size: .88rem; } }

/* ---------- Raspadinha ---------- */
.scratch-wrap { max-width: 460px; margin: 0 auto; text-align: center; }
.scratch-wrap h3 { font-size: 1.55rem; margin-bottom: 8px; }
.scratch-card { position: relative; width: 100%; height: 220px; margin: 22px auto 10px; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 10px 28px rgba(255,146,0,.22); user-select: none; -webkit-user-select: none; touch-action: none; }
.scratch-prize { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 4px; background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%); color: #fff; padding: 24px; }
.scratch-prize__top { font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.scratch-prize__big { font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.scratch-prize__big small { font-size: 1.6rem; font-weight: 800; margin-left: 6px; vertical-align: top; }
.scratch-prize__sub { font-size: .98rem; font-weight: 700; opacity: .95; margin-top: 4px; }
.scratch-prize.revealed { animation: pop .55s cubic-bezier(.18,1.2,.4,1.1); }
@keyframes pop { 0% { transform: scale(.92); } 60% { transform: scale(1.06); } 100% { transform: scale(1); } }
#scratchCanvas { position: absolute; inset: 0; cursor: grab; }
#scratchCanvas:active { cursor: grabbing; }
.scratch-hint { margin-top: 8px; font-size: .95rem; color: var(--muted); font-weight: 700; }

/* ---------- Cupom aplicado ---------- */
.cupom-badge { background: var(--verde-light); border: 1.5px dashed var(--verde); border-radius: var(--r-lg); padding: 20px 16px; margin: 22px 0; text-align: center; position: relative; animation: pop .5s cubic-bezier(.18,1.2,.4,1.1); overflow: hidden; }
.cupom-badge::before, .cupom-badge::after { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--bg); border: 1.5px dashed var(--verde); }
.cupom-badge::before { left: -12px; } .cupom-badge::after { right: -12px; }
.cupom-badge__tag { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 800; color: var(--verde-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.cupom-badge__tag .ic { width: 18px; height: 18px; padding: 3px; background: var(--verde); color: #fff; border-radius: 50%; }
.cupom-badge__code { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1rem, 5.2vw, 1.6rem); letter-spacing: .02em; color: var(--ink); background: #fff; border: 2px dashed var(--verde-dark); border-radius: 12px; padding: 10px 16px; display: inline-block; max-width: 100%; box-sizing: border-box; overflow-wrap: anywhere; word-break: break-word; line-height: 1.15; }
.cupom-badge__sub { font-size: .9rem; color: var(--ink-2); font-weight: 600; margin-top: 10px; }

/* ---------- Oferta (preço) ---------- */
.oferta { text-align: center; margin: 18px 0 8px; }
.oferta__de { color: var(--muted); font-weight: 700; font-size: 1rem; }
.oferta__de s { opacity: .9; }
.oferta__off { display: inline-block; background: var(--laranja); color: #fff; font-weight: 900; font-size: .78rem; padding: 5px 13px; border-radius: var(--r-pill); margin: 8px 0 6px; letter-spacing: .07em; }
.oferta__por { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.oferta__x { font-size: 1rem; color: var(--ink-2); font-weight: 700; }
.oferta__valor { font-size: 1.4rem; color: var(--ink); font-weight: 700; }
.oferta__valor strong { font-size: 3.2rem; font-weight: 900; letter-spacing: -.02em; color: var(--verde-dark); }
@media (max-width: 480px) { .oferta__valor strong { font-size: 2.8rem; } .scratch-prize__big { font-size: 3.2rem; } }

/* ---------- Quiz: processando ---------- */
.quiz-loading { text-align: center; padding: 28px 0; }
.spinner { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; border: 6px solid var(--verde-light); border-top-color: var(--verde); animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.quiz-loading h3 { font-size: 1.5rem; }

/* ---------- Garantia ---------- */
.guarantee-badge { display: flex; align-items: center; gap: 14px; text-align: left; background: var(--verde-light); border: 1px solid #b9e9d8; border-radius: var(--r-md); padding: 14px 18px; margin: 20px 0; }
.guarantee-badge img { width: 72px; height: 72px; flex: 0 0 auto; filter: drop-shadow(0 4px 8px rgba(0,143,105,.18)); }
.guarantee-badge b { display: block; color: var(--verde-dark); font-size: 1.05rem; }
.guarantee-badge span { color: var(--ink-2); font-size: .95rem; }
.guarantee-band { display: flex; align-items: center; gap: 36px; max-width: 880px; margin: 0 auto; background: var(--surface); border: 2px solid var(--verde); border-radius: var(--r-lg); padding: 32px 40px; box-shadow: var(--shadow-soft); }
.guarantee-band__seal { width: 180px; height: 180px; flex: 0 0 auto; filter: drop-shadow(0 8px 16px rgba(0,143,105,.22)); }
.guarantee-band h3 { font-size: 1.55rem; margin-bottom: 8px; }
.guarantee-band p { color: var(--ink-2); font-size: 1.05rem; }
@media (max-width: 640px) { .guarantee-band { flex-direction: column; text-align: center; gap: 18px; padding: 28px 22px; } .guarantee-band__seal { width: 150px; height: 150px; } }

/* ---------- Marquee UGC ---------- */
.marquee { margin-top: 42px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 20px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { width: 260px; height: 260px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-card); flex: 0 0 auto; background: var(--verde-light); }
@keyframes marquee { to { transform: translateX(calc(-50% - 10px)); } }
@media (max-width: 560px) { .marquee img { width: 210px; height: 210px; } }

/* ---------- Motion ---------- */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.reveal { opacity: 0; transform: translateY(16px); animation: revealUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal-1 { animation-delay: .05s; } .reveal-2 { animation-delay: .18s; } .reveal-3 { animation-delay: .31s; } .reveal-4 { animation-delay: .44s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

.hidden { display: none !important; }
.mb-40 { margin-bottom: 42px; } .mb-50 { margin-bottom: 52px; } .mt-0 { margin-top: 0; }

/* ---------- Páginas legais (termos/privacidade) ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 8px 0 14px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--verde-dark); }
.legal p, .legal li { color: var(--ink-2); line-height: 1.65; font-size: 1.05rem; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal ul li { margin-bottom: 8px; }
.legal code { background: var(--bg); padding: 2px 7px; border-radius: 6px; font-size: .95em; font-weight: 700; color: var(--ink); }
.legal .legal-back { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); }
.legal .legal-back a { color: var(--verde-dark); font-weight: 800; text-decoration: underline; }
