:root{
  --ink:#2A1B45;
  --roxo:#3F1C78;
  --violeta:#5F379E;
  --profundo:#40227F;
  --brand:#5F379E;
  --brand-hover:#4C2B84;
  --on-brand:#ffffff;
  --bg:#F6F4FA;
  --surface:#ffffff;
  --surface-2:#EFE9F7;
  --line:#E4DCF0;
  --muted:#6E6685;
  --prata:#B8B8B8;
  --wa:#25D366;
  --wa-hover:#1EBE5A;
  --shadow:0 2px 4px rgba(63,28,120,.05), 0 10px 30px rgba(63,28,120,.08);
  --shadow-lg:0 8px 24px rgba(63,28,120,.14), 0 24px 60px rgba(63,28,120,.14);
  --radius:18px;
  --maxw:1180px;
  --art-a:#FBFAFE; --art-b:#EEE8F8;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --ink:#F1ECF8; --brand:#7A4FCB; --brand-hover:#8C64D8; --on-brand:#fff;
    --bg:#160F1F; --surface:#20172E; --surface-2:#2A2040; --line:#372B4E; --muted:#AEA3C6;
    --shadow:0 2px 4px rgba(0,0,0,.3), 0 12px 30px rgba(0,0,0,.35);
    --shadow-lg:0 10px 30px rgba(0,0,0,.45), 0 24px 60px rgba(0,0,0,.5);
  }
}
:root[data-theme="dark"]{
  --ink:#F1ECF8; --brand:#7A4FCB; --brand-hover:#8C64D8; --on-brand:#fff;
  --bg:#160F1F; --surface:#20172E; --surface-2:#2A2040; --line:#372B4E; --muted:#AEA3C6;
  --shadow:0 2px 4px rgba(0,0,0,.3), 0 12px 30px rgba(0,0,0,.35);
  --shadow-lg:0 10px 30px rgba(0,0,0,.45), 0 24px 60px rgba(0,0,0,.5);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } *{ animation:none !important; transition:none !important; } }
body{ font-family:"Mulish", system-ui, -apple-system, sans-serif; color:var(--ink); background:var(--bg); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2,h3{ font-family:"Montserrat", system-ui, sans-serif; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 22px; }
.eyebrow{ font-family:"Montserrat"; font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--brand); }
.btn{ font-family:"Montserrat"; font-weight:700; border:none; cursor:pointer; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; gap:.5em; transition:transform .15s ease, background .2s ease, box-shadow .2s ease; }
.btn:active{ transform:translateY(1px); }
.btn-wa{ background:var(--wa); color:#0b3d1f; padding:.8em 1.35em; font-size:.95rem; }
.btn-wa:hover{ background:var(--wa-hover); }
.btn-brand{ background:var(--brand); color:var(--on-brand); padding:.8em 1.4em; }
.btn-brand:hover{ background:var(--brand-hover); }
.btn-ghost{ background:transparent; color:var(--ink); border:1.5px solid var(--line); padding:.75em 1.3em; }
.btn-ghost:hover{ border-color:var(--brand); color:var(--brand); }
.wa-ico{ width:1.15em; height:1.15em; flex:none; }

.announce{ background:var(--roxo); color:#fff; text-align:center; font-size:.82rem; font-weight:600; padding:8px 16px; }
.announce b{ font-weight:800; }

header{ position:sticky; top:0; z-index:50; background:color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:66px; gap:14px; }
.brand-logo{ height:32px; width:auto; }
.brand-logo.dark-only{ display:none; }
:root[data-theme="dark"] .brand-logo.light-only{ display:none; }
:root[data-theme="dark"] .brand-logo.dark-only{ display:block; }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .brand-logo.light-only{ display:none; } :root:not([data-theme="light"]) .brand-logo.dark-only{ display:block; } }
.links{ display:flex; align-items:center; gap:26px; }
.links a{ font-family:"Montserrat"; font-weight:600; font-size:.9rem; color:var(--muted); transition:color .15s; }
.links a:hover{ color:var(--brand); }
.nav-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{ width:40px; height:40px; border-radius:50%; border:1.5px solid var(--line); background:transparent; color:var(--ink); cursor:pointer; display:grid; place-items:center; position:relative; transition:border-color .15s; }
.icon-btn:hover{ border-color:var(--brand); }
.icon-btn svg{ width:20px; height:20px; }
.cart-count{ position:absolute; top:-6px; right:-6px; min-width:19px; height:19px; padding:0 5px; border-radius:999px; background:var(--brand); color:#fff; font-family:"Montserrat"; font-weight:800; font-size:.68rem; display:grid; place-items:center; border:2px solid var(--bg); }
.cart-count[data-empty="1"]{ display:none; }
@media (max-width:880px){ .links{ display:none !important; } .hide-sm{ display:none !important; } }

.hero{ position:relative; overflow:hidden; background:radial-gradient(70% 110% at 30% -8%, var(--surface-2), transparent 62%); }
.hero-center{ max-width:640px; margin:0; text-align:left; padding:74px 0 58px; }
.hero h1{ font-size:clamp(2.3rem,5.4vw,3.7rem); font-weight:800; line-height:1.05; letter-spacing:-.015em; text-wrap:balance; color:var(--roxo); }
:root[data-theme="dark"] .hero h1{ color:#E7DCFB; }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .hero h1{ color:#E7DCFB; } }
.hero .lead{ margin:18px 0 0; font-size:1.1rem; color:var(--muted); max-width:46ch; }
.hero .cta-row{ margin-top:28px; display:flex; flex-wrap:wrap; gap:12px; }
.hero .mini{ margin-top:24px; display:flex; flex-wrap:wrap; gap:8px 20px; font-size:.85rem; color:var(--muted); }
.hero .mini span{ display:inline-flex; align-items:center; gap:7px; }
.hero .mini svg{ width:16px; height:16px; color:var(--brand); }
@media (max-width:600px){ .hero-center{ padding:46px 0 40px; } .hero .lead{ font-size:1rem; } }
.view{ display:block; }

.trust{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item{ padding:20px 18px; display:flex; align-items:center; gap:13px; border-left:1px solid var(--line); }
.trust-item:first-child{ border-left:none; }
.trust-item .ic{ width:40px; height:40px; border-radius:11px; background:var(--surface-2); display:grid; place-items:center; flex:none; color:var(--brand); }
.trust-item .ic svg{ width:21px; height:21px; }
.trust-item h4{ font-family:"Montserrat"; font-size:.88rem; font-weight:700; }
.trust-item p{ font-size:.77rem; color:var(--muted); line-height:1.35; }
@media (max-width:880px){ .trust-grid{ grid-template-columns:1fr 1fr; } .trust-item:nth-child(3){ border-left:none; } .trust-item:nth-child(n+3){ border-top:1px solid var(--line); } }
@media (max-width:480px){ .trust-item{ padding:16px 14px; } .trust-item p{ display:none; } }

section{ padding:70px 0; }
@media (max-width:600px){ section{ padding:48px 0; } }
.sec-head{ text-align:center; max-width:640px; margin:0 auto 40px; }
.sec-head h2{ font-size:clamp(1.7rem,3.6vw,2.5rem); font-weight:800; letter-spacing:-.01em; margin-top:10px; text-wrap:balance; }
.sec-head p{ margin-top:12px; color:var(--muted); font-size:1.02rem; }

.filters{ display:flex; flex-wrap:wrap; gap:9px; justify-content:center; margin-bottom:32px; }
.chip{ font-family:"Montserrat"; font-weight:600; font-size:.8rem; padding:.5em 1em; border-radius:999px; border:1.5px solid var(--line); background:var(--surface); color:var(--muted); cursor:pointer; transition:.15s; white-space:nowrap; }
.chip:hover{ border-color:var(--brand); color:var(--brand); }
.chip.active{ background:var(--brand); border-color:var(--brand); color:var(--on-brand); }
@media (max-width:600px){ .filters{ flex-wrap:nowrap; overflow-x:auto; justify-content:flex-start; padding-bottom:6px; -webkit-overflow-scrolling:touch; scrollbar-width:none; } .filters::-webkit-scrollbar{ display:none; } }

.grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:1040px){ .grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:820px){ .grid{ grid-template-columns:repeat(2,1fr); gap:16px; } }
@media (max-width:360px){ .grid{ grid-template-columns:1fr; } }
.card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow); transition:transform .18s ease, box-shadow .18s ease; }
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.art{ position:relative; aspect-ratio:4/3.2; background:linear-gradient(160deg,var(--art-a),var(--art-b)); display:grid; place-items:center; padding:12px; }
.art .catchip{ position:absolute; top:10px; left:10px; font-family:"Montserrat"; font-weight:700; font-size:.6rem; letter-spacing:.06em; text-transform:uppercase; color:#fff; padding:.32em .66em; border-radius:999px; }
.art svg.bottle{ height:86%; width:auto; filter:drop-shadow(0 10px 16px rgba(40,27,69,.18)); }
.card-body{ padding:14px 14px 16px; display:flex; flex-direction:column; gap:5px; flex:1; }
.card-body .line{ font-family:"Montserrat"; font-weight:800; font-size:1.02rem; line-height:1.1; }
.card-body .type{ font-size:.78rem; color:var(--muted); font-weight:600; }
.card-body .desc{ font-size:.8rem; color:var(--muted); margin-top:2px; }
.card-body .meta{ margin-top:auto; padding-top:10px; }
.price .cur{ font-size:.72rem; color:var(--muted); font-weight:600; display:block; }
.price .val{ font-family:"Montserrat"; font-weight:800; font-size:1.42rem; color:var(--roxo); font-variant-numeric:tabular-nums; letter-spacing:-.01em; }
:root[data-theme="dark"] .price .val{ color:#CDB6F5; }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .price .val{ color:#CDB6F5; } }
.price .size{ font-size:.72rem; color:var(--muted); }
.card .add{ width:100%; margin-top:12px; font-size:.85rem; padding:.7em 1em; }
.card .add.in{ background:var(--surface-2); color:var(--brand); }
@media (max-width:820px){
  .art{ aspect-ratio:4/3; padding:10px; }
  .art svg.bottle{ height:80%; }
  .card-body{ padding:12px 12px 14px; }
  .card-body .line{ font-size:.95rem; }
  .card-body .desc{ display:none; }
  .price .val{ font-size:1.28rem; }
  .card .add{ font-size:.8rem; padding:.65em .8em; }
}

.revenda{ background:linear-gradient(135deg, var(--roxo), var(--violeta)); color:#fff; border-radius:24px; padding:44px; display:grid; grid-template-columns:1.4fr 1fr; gap:30px; align-items:center; overflow:hidden; position:relative; box-shadow:var(--shadow-lg); }
.revenda::after{ content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle at 40% 40%, rgba(255,255,255,.22), transparent 70%); }
.revenda h2{ color:#fff; font-size:clamp(1.5rem,3vw,2.2rem); font-weight:800; text-wrap:balance; }
.revenda p{ margin-top:12px; color:rgba(255,255,255,.9); max-width:46ch; }
.revenda .rc,.revenda .rpts{ position:relative; z-index:1; }
.revenda .rpts{ display:flex; flex-direction:column; gap:11px; }
.revenda .rpts .r{ display:flex; gap:11px; align-items:center; font-weight:600; font-size:.93rem; }
.revenda .rpts .r svg{ width:19px; height:19px; flex:none; color:#D8C6F7; }
.revenda .btn-wa{ margin-top:20px; }
@media (max-width:820px){ .revenda{ grid-template-columns:1fr; padding:30px 24px; } }

.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px; text-align:center; }
.step .n{ font-family:"Montserrat"; font-weight:800; width:38px; height:38px; border-radius:50%; background:var(--surface-2); color:var(--brand); display:grid; place-items:center; margin:0 auto 14px; }
.step h4{ font-family:"Montserrat"; font-weight:700; font-size:1.02rem; margin-bottom:6px; }
.step p{ font-size:.87rem; color:var(--muted); }
@media (max-width:760px){ .steps{ grid-template-columns:1fr; gap:14px; } }

.sobre{ display:grid; grid-template-columns:1fr 1fr; gap:38px; align-items:center; }
.sobre .card2{ background:var(--surface); border:1px solid var(--line); border-radius:20px; padding:28px; box-shadow:var(--shadow); }
.sobre h2{ font-size:clamp(1.6rem,3.2vw,2.3rem); font-weight:800; text-wrap:balance; }
.sobre p{ margin-top:14px; color:var(--muted); }
.sobre .facts{ margin-top:18px; display:flex; flex-direction:column; gap:13px; }
.sobre .fact{ display:flex; gap:12px; align-items:flex-start; }
.sobre .fact svg{ width:22px; height:22px; color:var(--brand); flex:none; margin-top:2px; }
.sobre .fact b{ font-family:"Montserrat"; font-weight:700; display:block; font-size:.94rem; }
.sobre .fact span{ font-size:.84rem; color:var(--muted); }
@media (max-width:820px){ .sobre{ grid-template-columns:1fr; gap:24px; } }

footer{ background:var(--roxo); color:#EFE7FB; padding:52px 0 28px; margin-top:20px; }
:root[data-theme="dark"] footer{ background:#100B18; border-top:1px solid var(--line); }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) footer{ background:#100B18; border-top:1px solid var(--line); } }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:34px; }
.foot-logo{ height:36px; margin-bottom:14px; }
footer .slogan{ font-size:.88rem; color:rgba(255,255,255,.75); max-width:32ch; }
footer h5{ font-family:"Montserrat"; font-weight:700; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:13px; }
footer ul{ list-style:none; display:flex; flex-direction:column; gap:9px; }
footer li a, footer li{ font-size:.89rem; color:rgba(255,255,255,.85); display:inline-flex; gap:9px; align-items:center; }
footer li a:hover{ color:#fff; }
footer li svg{ width:16px; height:16px; flex:none; color:#C9B4EE; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.15); margin-top:32px; padding-top:18px; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; font-size:.77rem; color:rgba(255,255,255,.6); }
@media (max-width:760px){ .foot-grid{ grid-template-columns:1fr; gap:24px; } }

/* ---- FAB carrinho ---- */
.fab{ position:fixed; right:20px; bottom:20px; z-index:60; background:var(--brand); color:#fff; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; box-shadow:0 8px 24px rgba(95,55,158,.45); border:none; cursor:pointer; transition:transform .15s; }
.fab:hover{ transform:scale(1.06); }
.fab svg{ width:26px; height:26px; }
.fab .fc{ position:absolute; top:-3px; right:-3px; min-width:23px; height:23px; padding:0 6px; border-radius:999px; background:#fff; color:var(--brand); font-family:"Montserrat"; font-weight:800; font-size:.74rem; display:grid; place-items:center; border:2px solid var(--bg); }
.fab[data-empty="1"] .fc{ display:none; }

/* ---- drawer carrinho ---- */
.overlay{ position:fixed; inset:0; background:rgba(20,12,32,.5); backdrop-filter:blur(2px); z-index:70; opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s; }
.overlay.open{ opacity:1; visibility:visible; }
.drawer{ position:fixed; top:0; right:0; height:100%; width:400px; max-width:92vw; background:var(--bg); z-index:80; box-shadow:-10px 0 40px rgba(20,12,32,.28); display:flex; flex-direction:column; transform:translateX(100%); transition:transform .28s cubic-bezier(.4,0,.2,1); }
.drawer.open{ transform:translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:20px; border-bottom:1px solid var(--line); }
.drawer-head h3{ font-size:1.15rem; font-weight:800; display:flex; align-items:center; gap:9px; }
.drawer-head svg{ width:20px; height:20px; color:var(--brand); }
.drawer-close{ width:36px; height:36px; border-radius:50%; border:none; background:var(--surface-2); color:var(--ink); cursor:pointer; font-size:1.3rem; display:grid; place-items:center; }
.drawer-close:hover{ color:var(--brand); }
.drawer-body{ flex:1; overflow-y:auto; padding:16px 20px; }
.cart-empty{ text-align:center; color:var(--muted); padding:48px 20px; }
.cart-empty svg{ width:52px; height:52px; color:var(--line); margin:0 auto 14px; }
.cart-empty b{ display:block; font-family:"Montserrat"; color:var(--ink); font-size:1rem; margin-bottom:4px; }
.ci{ display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); }
.ci-art{ width:56px; height:56px; border-radius:12px; flex:none; display:grid; place-items:center; overflow:hidden; }
.ci-art img{ width:60%; }
.ci-info{ flex:1; min-width:0; }
.ci-info .l{ font-family:"Montserrat"; font-weight:700; font-size:.9rem; line-height:1.2; }
.ci-info .t{ font-size:.74rem; color:var(--muted); }
.ci-info .p{ font-family:"Montserrat"; font-weight:700; font-size:.86rem; color:var(--roxo); margin-top:3px; }
:root[data-theme="dark"] .ci-info .p{ color:#CDB6F5; }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .ci-info .p{ color:#CDB6F5; } }
.ci-right{ display:flex; flex-direction:column; align-items:flex-end; justify-content:space-between; gap:8px; }
.qty{ display:flex; align-items:center; gap:2px; border:1.5px solid var(--line); border-radius:999px; overflow:hidden; }
.qty button{ width:28px; height:28px; border:none; background:transparent; color:var(--ink); cursor:pointer; font-size:1.05rem; font-weight:700; display:grid; place-items:center; }
.qty button:hover{ color:var(--brand); background:var(--surface-2); }
.qty span{ min-width:22px; text-align:center; font-family:"Montserrat"; font-weight:700; font-size:.85rem; font-variant-numeric:tabular-nums; }
.ci-remove{ background:none; border:none; color:var(--muted); cursor:pointer; font-size:.72rem; font-weight:600; padding:0; }
.ci-remove:hover{ color:#C24C86; }
.drawer-foot{ border-top:1px solid var(--line); padding:18px 20px calc(18px + env(safe-area-inset-bottom)); background:var(--surface); }
.drawer-foot .frete{ display:flex; align-items:center; gap:8px; font-size:.8rem; color:var(--muted); margin-bottom:12px; }
.drawer-foot .frete svg{ width:17px; height:17px; color:var(--wa); flex:none; }
.drawer-foot .totrow{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:14px; }
.drawer-foot .totrow .lbl{ font-size:.85rem; color:var(--muted); }
.drawer-foot .totrow .tot{ font-family:"Montserrat"; font-weight:800; font-size:1.5rem; color:var(--roxo); font-variant-numeric:tabular-nums; }
:root[data-theme="dark"] .drawer-foot .totrow .tot{ color:#CDB6F5; }
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .drawer-foot .totrow .tot{ color:#CDB6F5; } }
.drawer-foot .btn-wa{ width:100%; padding:.95em; font-size:1rem; }
.drawer-foot .btn-wa[disabled]{ opacity:.5; pointer-events:none; }
.drawer-foot .cont{ display:block; text-align:center; margin-top:10px; font-size:.82rem; color:var(--muted); cursor:pointer; background:none; border:none; width:100%; }
.drawer-foot .cont:hover{ color:var(--brand); }

.toast{ position:fixed; left:50%; bottom:92px; transform:translateX(-50%) translateY(20px); background:var(--ink); color:var(--bg); padding:11px 20px; border-radius:999px; font-family:"Montserrat"; font-weight:700; font-size:.85rem; z-index:90; opacity:0; visibility:hidden; pointer-events:none; transition:opacity .2s, transform .2s; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:8px; }
.toast svg{ width:18px; height:18px; color:var(--wa); }
.toast.show{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
