:root {
  --green: #1d492c;
  --green-2: #245a37;
  --green-dark: #143521;
  --gold: #e1c341;
  --gold-2: #cfae2a;
  --green-ink: #f3f5ef;
  --sand: #f6f4ee;
  --ink: #161915;
  --muted: #6b7068;
  --line: #e2e0d8;
  --white: #fff;
  --danger: #a3261d;
  --warn: #8a5a00;
  --ok: #1f6b3e;
  --radius: 14px;
  --font: "Onest", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 140px; }
body { margin: 0; font: 16px/1.55 var(--font); color: var(--ink); background: var(--sand); }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 650; }
h2 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 600; }
p { margin: 0 0 10px; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 760px; }
.section { padding-top: 28px; padding-bottom: 28px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.center { display: block; text-align: center; margin-top: 12px; }
.mt { margin-top: 16px; }
.warn { color: var(--warn); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--white); padding: 8px 12px; z-index: 50; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid #7fb08f; outline-offset: 2px; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1.5px solid transparent;
  font: inherit; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--green); color: var(--green-ink); }
.btn-primary:hover { background: var(--green-2); }
.btn-primary:disabled { background: #9aa89f; cursor: not-allowed; }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--green); }
.btn.block { display: flex; width: 100%; margin-top: 10px; }
.btn.grow { flex: 1; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; font-size: 14px; color: var(--green); text-decoration: underline; cursor: pointer; }

/* ---------- avisos ---------- */
.notice { margin-top: 16px; padding: 12px 16px; border-radius: 10px; background: var(--white); border-left: 4px solid var(--green); }
.notice-warning { border-color: var(--warn); }
.notice-error { border-color: var(--danger); }

/* ---------- grade de produtos ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; } }
.card-media { position: relative; display: block; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: #e9ece6; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.card-media img.alt { opacity: 0; }
.card-media:hover img.alt { opacity: 1; }
.is-out .card-media img:not(.alt) { filter: grayscale(.6); opacity: .75; }
.card-media:has(img.alt):hover img:not(.alt) { opacity: 0; }
.is-out .card-media:hover img.alt { opacity: .75; filter: grayscale(.6); }
.tag { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.tag.new { background: var(--green); }
.tag.sale { background: var(--danger); }
.card-body { padding-top: 10px; }
.card-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.card-body h3 a { text-decoration: none; }
.card-colors { font-size: 13px; color: var(--muted); margin: 0; }
.price { margin: 4px 0 0; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.price s { color: var(--muted); font-size: 14px; }
.price strong { font-size: 17px; }
.inst { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- listagem ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.listing-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.filters { display: flex; gap: 10px; }
.filters label { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.filters select { height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 0 10px; font: inherit; font-size: 15px; background: var(--white); color: var(--ink); min-width: 140px; }
.pager { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.pager a { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; background: var(--white); }
.pager a.on { background: var(--green); color: var(--white); border-color: var(--green); }
.empty { text-align: center; padding: 48px 16px; }
.empty h1 { margin-bottom: 8px; }

/* ---------- produto ---------- */
.product-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; align-items: start; }
@media (max-width: 860px) { .product-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; } }
.gallery-main { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: var(--radius); background: #e9ece6; scrollbar-width: none; }
.gallery-main::-webkit-scrollbar { display: none; }
.gallery-main img { flex: 0 0 100%; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; scroll-snap-align: start; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumbs button { flex: none; width: 64px; padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: none; cursor: pointer; }
.gallery-thumbs button.on { border-color: var(--green); }
.gallery-thumbs img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }

.buybox { position: sticky; top: 84px; }
@media (max-width: 860px) { .buybox { position: static; } }
.buybox h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
.buy-price { display: flex; gap: 10px; align-items: baseline; }
.buy-price s { color: var(--muted); }
.buy-price strong { font-size: 28px; }
.pay-lines { list-style: none; padding: 0; margin: 10px 0 16px; display: grid; gap: 6px; font-size: 15px; }
.pay-badge { display: inline-block; min-width: 54px; text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 6px; border-radius: 6px; background: #e3eee6; color: var(--green); margin-right: 6px; }
.short-desc { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 10px 0; margin-bottom: 16px; }
.short-desc p { margin: 0; }

.opt { border: 0; padding: 0; margin: 0 0 16px; }
.opt legend { font-size: 14px; font-weight: 600; margin-bottom: 8px; display: flex; gap: 12px; align-items: baseline; width: 100%; }
.opt legend span { font-weight: 400; color: var(--muted); }
.opt legend .link-btn { margin-left: auto; }
.opt-list { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-btn input { position: absolute; opacity: 0; pointer-events: none; }
.opt-btn span { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; font-size: 15px; }
.opt-btn.size span { min-width: 52px; padding: 0 10px; }
.opt-btn input:checked + span { border-color: var(--green); background: var(--green); color: var(--white); }
.opt-btn input:focus-visible + span { outline: 3px solid #7fb08f; }
.opt-btn input:disabled + span { color: #aeb3aa; background: repeating-linear-gradient(135deg, #fff, #fff 6px, #f1f1ee 6px, #f1f1ee 7px); cursor: not-allowed; text-decoration: line-through; }
.stock-hint { font-size: 14px; color: var(--warn); margin: 8px 0 0; min-height: 1.4em; }

.buy-actions { display: flex; gap: 10px; }
.qty input { width: 72px; height: 48px; border: 1.5px solid var(--line); border-radius: 999px; text-align: center; font: inherit; }
.qty.small input { width: 64px; height: 40px; }
.form-msg { font-size: 14px; margin-top: 8px; min-height: 1.4em; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--danger); }
.soldout-box { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }

.assurances { list-style: none; padding: 16px 0 0; margin: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.assurances li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.assurances a { color: var(--green); }

.guide { border: 0; border-radius: var(--radius); padding: 24px; max-width: 560px; width: calc(100% - 32px); }
.guide::backdrop { background: rgba(0,0,0,.45); }
.guide .close { float: right; border: 0; background: none; font-size: 28px; line-height: 1; cursor: pointer; }
.guide-table { overflow-x: auto; margin: 16px 0; }
.guide-table table { border-collapse: collapse; width: 100%; font-size: 14px; }
.guide-table th, .guide-table td { border: 1px solid var(--line); padding: 8px; text-align: center; }
.guide-table th { background: var(--sand); }

.description { margin-top: 40px; max-width: 760px; }
.description h2 { margin-bottom: 12px; }
.prose { font-size: 16px; }
.prose h2 { font-size: 20px; margin: 28px 0 10px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 4px; }

/* ---------- carrinho ---------- */
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; margin-top: 20px; }
@media (max-width: 860px) { .cart-grid { grid-template-columns: 1fr; } }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 100%; height: auto; border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; }
.ci-name { font-weight: 600; text-decoration: none; }
.ci-info p { margin: 2px 0; }
.ci-actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; }
.summary { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); position: sticky; top: 84px; }
.summary dl { margin: 16px 0; }
.summary dl div { display: flex; justify-content: space-between; padding: 6px 0; }
.summary dd { margin: 0; }
.sum-total { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 12px; font-size: 18px; }

/* ---------- rodapé ---------- */
.footer { background: var(--ink); color: #d8dbd4; margin-top: 48px; padding-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer a { display: block; color: #d8dbd4; text-decoration: none; padding: 4px 0; font-size: 15px; }
.footer a:hover { color: var(--white); }
.f-title { color: var(--white); font-weight: 600; margin-bottom: 6px; }
.muted-light { color: #9ea39a; font-size: 14px; }
.copy { border-top: 1px solid #2c302a; margin-top: 32px; padding-top: 16px; padding-bottom: 24px; font-size: 13px; color: #8a8f86; }

.wa-float { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 999px; background: #1fa855; color: var(--white); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); z-index: 40; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }

/* ---------- checkout ---------- */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; align-items: start; margin-top: 20px; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
.co-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.co-step h2 { font-size: 19px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.co-step h2 span { width: 28px; height: 28px; border-radius: 999px; background: var(--green); color: var(--white); display: grid; place-items: center; font-size: 14px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fields .full { grid-column: 1 / -1; }
@media (max-width: 520px) { .fields { grid-template-columns: 1fr; } }
.fields label { font-size: 13px; font-weight: 600; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.fields input, .fields select { height: 48px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 12px; font: inherit; font-size: 16px; color: var(--ink); background: var(--white); width: 100%; }
.fields input:focus, .fields select:focus { border-color: var(--green); outline: none; }
.fields input:invalid:not(:placeholder-shown):not(:focus) { border-color: #d9a39e; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cep-hint { align-self: end; margin: 0 0 14px; font-size: 13px; }
.cep-hint a { color: var(--green); }
.hint { font-size: 13px; color: var(--muted); }
.ship-options { margin-top: 16px; display: grid; gap: 8px; }
.ship-opt, .pay-opt { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; background: var(--white); }
.ship-opt:has(input:checked), .pay-opt:has(input:checked) { border-color: var(--green); background: #f0f6f2; }
.ship-opt input, .pay-opt input { accent-color: var(--green); width: 18px; height: 18px; }
.ship-opt span { flex: 1; display: flex; flex-direction: column; }
.ship-opt small, .pay-opt small { color: var(--muted); display: block; font-size: 13px; }
.ship-opt s { color: var(--muted); font-size: 13px; margin-right: 6px; }
.pay-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
@media (max-width: 520px) { .pay-tabs { grid-template-columns: 1fr; } }
.card-fields[hidden] { display: none; }
.co-summary { top: 84px; }
.co-items { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.co-items li { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center; font-size: 14px; }
.co-items img { width: 100%; height: auto; border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; }
.co-items small { display: block; color: var(--muted); }
.co-summary .center a { color: var(--green); }

/* ---------- pedido ---------- */
.pix-box { display: grid; grid-template-columns: 240px 1fr; gap: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin: 20px 0; align-items: start; }
@media (max-width: 600px) { .pix-box { grid-template-columns: 1fr; justify-items: center; } }
.qr-ph { width: 220px; height: 220px; display: grid; place-items: center; text-align: center; border: 2px dashed var(--line); border-radius: 12px; color: var(--muted); }
.pix-info { width: 100%; }
.pix-value { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.pix-info textarea { width: 100%; font: 13px ui-monospace, monospace; border: 1px solid var(--line); border-radius: 8px; padding: 8px; resize: none; margin-top: 4px; }
.pix-info ol { padding-left: 18px; margin-top: 14px; }
.timeline { list-style: none; padding: 0; margin: 24px 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; counter-reset: s; }
.timeline li { font-size: 12px; text-align: center; color: var(--muted); padding-top: 30px; position: relative; }
.timeline li::before { counter-increment: s; content: counter(s); position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; border-radius: 999px; background: var(--line); color: var(--muted); display: grid; place-items: center; font-weight: 700; }
.timeline li.done::before { content: "✓"; background: var(--green); color: var(--white); }
.timeline li.now { color: var(--ink); font-weight: 600; }
.timeline li.now::before { background: var(--green); color: var(--white); box-shadow: 0 0 0 4px #cfe3d6; }


/* =========================================================
   Topo estilo marketplace — verde The Fields
   ========================================================= */
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--gold-2); }
.logo { display: inline-flex; align-items: center; font-weight: 800; letter-spacing: .22em; font-size: 18px; text-decoration: none; color: var(--gold); white-space: nowrap; }
.logo img { display: block; height: 52px; width: auto; }
.logo.light { color: var(--gold); margin-bottom: 10px; }
.logo.light img { height: 44px; }

.topbar { background: var(--green-dark); color: var(--gold); text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .02em; height: 32px; position: relative; overflow: hidden; }
.topbar p { margin: 0; position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.topbar p.on { opacity: 1; transform: none; }

.header { background: var(--green); color: var(--white); position: sticky; top: 0; z-index: 30; box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.header-row { display: flex; align-items: center; gap: 24px; height: 76px; }
.search { flex: 1; max-width: 640px; margin: 0 auto; position: relative; }
.search input { width: 100%; height: 46px; border: 0; border-radius: 999px; padding: 0 56px 0 20px; font: inherit; font-size: 15px; background: var(--white); color: var(--ink); }
.search input:focus { outline: 3px solid var(--gold); }
.search button { position: absolute; right: 4px; top: 4px; width: 38px; height: 38px; border-radius: 999px; border: 0; background: var(--gold); color: var(--green-dark); display: grid; place-items: center; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.h-action { display: flex; align-items: center; gap: 8px; color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px; line-height: 1.15; }
.h-action small { display: block; font-weight: 400; font-size: 12px; opacity: .8; }
.h-action:hover { color: var(--gold); }
.cart-ico { position: relative; display: inline-flex; }
.cart-count { position: absolute; top: -6px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: var(--green-dark); font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.cart-count[hidden] { display: none; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; border: 0; background: none; color: inherit; cursor: pointer; }
.menu-toggle { display: none; }

.catbar { background: var(--green-dark); }
.catbar-row { display: flex; align-items: center; gap: 4px; height: 46px; }
.catbar a { color: #e9efe9; text-decoration: none; font-size: 14px; font-weight: 600; padding: 0 14px; height: 46px; display: inline-flex; align-items: center; gap: 4px; border-bottom: 3px solid transparent; white-space: nowrap; }
.catbar a:hover, .catbar a.on { color: var(--gold); border-bottom-color: var(--gold); }
.catbar .caret { font-size: 10px; opacity: .8; }
.catbar-right { margin-left: auto; font-weight: 500 !important; opacity: .85; }
.nav-item { position: relative; }
.nav-sub { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border-radius: 0 0 12px 12px; padding: 8px; box-shadow: 0 16px 32px rgba(0,0,0,.14); z-index: 5; }
.nav-sub a { display: flex; height: auto; padding: 10px 12px; color: var(--ink); border: 0; border-radius: 8px; font-weight: 500; }
.nav-sub a:hover { background: var(--sand); color: var(--green); }
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { display: block; }

@media (max-width: 900px) {
  .header-row { flex-wrap: wrap; height: auto; padding-top: 10px; padding-bottom: 12px; gap: 8px 12px; }
  .menu-toggle { display: inline-flex; margin-left: -8px; }
  .logo img { height: 40px; }
  .search { order: 5; flex-basis: 100%; max-width: none; }
  .search input { height: 42px; }
  .header-actions { margin-left: auto; }
  .hide-sm { display: none !important; }
  .catbar { display: none; }
  .catbar.open { display: block; position: absolute; left: 0; right: 0; top: 100%; max-height: calc(100vh - 140px); overflow-y: auto; box-shadow: 0 16px 32px rgba(0,0,0,.25); }
  .catbar-row { flex-direction: column; align-items: stretch; height: auto; padding: 8px 16px 16px; }
  .catbar a { height: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .catbar-right { margin-left: 0; }
  .nav-sub { display: block; position: static; background: none; box-shadow: none; padding: 0 0 6px 14px; }
  .nav-sub a { color: #cfd8cf; height: 40px; }
}

/* ---------- banner rotativo ---------- */
.slider { position: relative; background: var(--green-dark); overflow: hidden; }
.slides { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.slides::-webkit-scrollbar { display: none; }
.slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; height: clamp(420px, 62vh, 620px); color: var(--white); display: flex; align-items: center; }
.slide-bg, .slide-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,30,18,.78) 0%, rgba(10,30,18,.35) 45%, rgba(10,30,18,0) 70%); }
.slide-banner.align-right::after { background: linear-gradient(270deg, rgba(10,30,18,.78) 0%, rgba(10,30,18,.35) 45%, rgba(10,30,18,0) 70%); }
.slide-banner.align-center::after { background: rgba(10,30,18,.45); }
.slide-content { position: relative; z-index: 2; width: 100%; }
.slide-text { max-width: 520px; }
.align-right .slide-text { margin-left: auto; text-align: right; }
.align-center .slide-text { margin: 0 auto; text-align: center; }
.slide-eyebrow { display: inline-block; background: var(--gold); color: var(--green-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.slide-title { font-size: clamp(34px, 5.4vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; margin-bottom: 14px; }
.slide-sub { font-size: clamp(16px, 1.6vw, 19px); opacity: .9; margin-bottom: 10px; }
.slide-price { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 22px; }
.slide .btn { min-height: 52px; padding: 0 28px; font-size: 16px; margin-top: 8px; }

/* slide automático de produto: fundo verde com as fotos à direita */
.slide-product { background: radial-gradient(circle at 75% 50%, #2c6a44 0%, var(--green) 45%, var(--green-dark) 100%); }
.slide-photos { position: absolute; right: max(16px, calc((100vw - 1240px) / 2)); top: 50%; transform: translateY(-50%); height: 88%; display: flex; gap: 16px; align-items: center; }
.slide-photos img { height: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.slide-photos img.second { height: 72%; transform: translateY(12%); opacity: .95; }
.slide-empty { height: 360px; display: flex; align-items: center; color: var(--white); background: radial-gradient(circle at 75% 50%, #2c6a44 0%, var(--green) 45%, var(--green-dark) 100%); }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 999px; border: 0; background: rgba(255,255,255,.92); color: var(--green); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.2); opacity: 0; transition: opacity .2s; }
.slider:hover .slider-arrow, .slider-arrow:focus-visible { opacity: 1; }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slider-dots button { width: 34px; height: 20px; border: 0; background: none; padding: 0; cursor: pointer; display: grid; place-items: center; }
.slider-dots i { display: block; width: 100%; height: 4px; border-radius: 4px; background: rgba(255,255,255,.4); overflow: hidden; position: relative; }
.slider-dots button.on i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform-origin: left; animation: dotfill var(--slide-ms, 6000ms) linear forwards; }
.slider.paused .slider-dots button.on i::after { animation-play-state: paused; }
@keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 800px) {
  .slide { height: 560px; align-items: flex-end; padding-bottom: 56px; }
  .slide-banner::after { background: linear-gradient(0deg, rgba(10,30,18,.85) 0%, rgba(10,30,18,.3) 55%, rgba(10,30,18,0) 80%) !important; }
  .slide-text, .align-right .slide-text { text-align: left; margin: 0; }
  .slide-photos { right: 50%; transform: translateX(50%); top: 20px; height: 56%; }
  .slide-photos img.second { display: none; }
  .slide-product .slide-text { background: linear-gradient(0deg, var(--green-dark) 60%, transparent); padding-top: 30px; }
  .slider-arrow { display: none; }
}

/* ---------- benefícios ---------- */
.perks { background: var(--white); border-bottom: 1px solid var(--line); }
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 18px; padding-bottom: 18px; }
.perks-grid > div { display: flex; align-items: center; gap: 12px; }
.perks-grid svg { flex: none; width: 34px; height: 34px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.perks-grid p { margin: 0; display: flex; flex-direction: column; font-size: 14px; line-height: 1.3; }
.perks-grid span { color: var(--muted); font-size: 13px; }
@media (max-width: 900px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .perks-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .perks-grid svg { width: 26px; height: 26px; } .perks-grid p { font-size: 13px; } }

/* ---------- categorias ---------- */
.sec-title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -.01em; color: var(--green-dark); }
.cat-circles { display: flex; gap: 20px; overflow-x: auto; padding: 16px 2px 6px; scrollbar-width: none; }
.cat-circle { flex: none; width: 128px; text-align: center; text-decoration: none; color: var(--ink); }
.cat-circle span { display: block; width: 116px; height: 116px; margin: 0 auto 10px; border-radius: 999px; overflow: hidden; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green); transition: box-shadow .2s, transform .2s; background: #e9ece6; }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cat-circle strong { font-size: 14px; font-weight: 600; }
.cat-circle:hover span { box-shadow: 0 0 0 3px var(--gold); transform: translateY(-3px); }
@media (max-width: 600px) { .cat-circle { width: 92px; } .cat-circle span { width: 84px; height: 84px; } .cat-circle strong { font-size: 13px; } }

/* ---------- prateleiras ---------- */
.shelf-nav { display: flex; align-items: center; gap: 8px; }
.shelf-nav a { color: var(--green); font-weight: 700; text-decoration: none; margin-right: 6px; font-size: 14px; }
.shelf-nav button { width: 38px; height: 38px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--green); font-size: 22px; line-height: 1; cursor: pointer; }
.shelf-nav button:hover:not(:disabled) { border-color: var(--green); }
.shelf-nav button:disabled { opacity: .35; cursor: default; }
.shelf-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 16px) / 4); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 2px 12px; }
.shelf-track::-webkit-scrollbar { display: none; }
.shelf-track > * { scroll-snap-align: start; }
@media (max-width: 1000px) { .shelf-track { grid-auto-columns: calc((100% - 2 * 16px) / 3); } }
@media (max-width: 700px) { .shelf-track { grid-auto-columns: 44%; gap: 12px; } .shelf-nav button { display: none; } }

/* ---------- cards estilo vitrine ---------- */
.card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.card:hover { box-shadow: 0 14px 30px rgba(20,53,33,.12); transform: translateY(-2px); }
.card-media { border-radius: 0; }
.card-body { padding: 12px 14px 16px; }
.card-body h3 { font-size: 15px; min-height: 2.6em; }
.price strong { color: var(--green-dark); font-size: 19px; }
.tag.new { background: var(--gold); color: var(--green-dark); }

.band { background: linear-gradient(120deg, var(--green-dark), var(--green)); }
.band-eyebrow { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: 1 !important; margin: 0 0 4px !important; }

.footer { background: var(--green-dark); }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.band { color: var(--green-ink); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.band h2 { color: var(--white); }
.band p { opacity: .85; margin: 6px 0 0; }
@media (max-width: 600px) { .band { padding: 24px 20px; } .band .btn { width: 100%; } }

.logo img[src$='.png'] { height: 52px; }
.logo.light img[src$='.png'] { height: 56px; }
@media (max-width: 900px) { .logo img[src$='.png'] { height: 40px; } }

/* categorias com ícone dourado */
.center-title { text-align: center; }
.cat-circles { justify-content: center; flex-wrap: wrap; gap: 28px 36px; overflow: visible; padding-top: 22px; }
.cat-circle { width: 120px; }
.cat-circle span { width: 104px; height: 104px; display: grid; place-items: center; background: var(--green); border: 3px solid var(--gold); box-shadow: none; box-sizing: border-box; }
.cat-icon { width: 56px; height: 56px; fill: none; stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.cat-circle:hover span { transform: translateY(-4px); box-shadow: none; }
.cat-circle:hover .cat-icon { transform: scale(1.08); }
.cat-circle strong { display: block; line-height: 1.25; }
@media (max-width: 600px) {
  .cat-circles { gap: 18px 14px; }
  .cat-circle { width: 30%; max-width: 110px; }
  .cat-circle span { width: 78px; height: 78px; }
  .cat-icon { width: 42px; height: 42px; }
}

/* slide de produto no desktop: texto + fotos juntos, centralizados */
@media (min-width: 801px) {
  .slide-product { justify-content: center; gap: clamp(32px, 5vw, 72px); padding: 0 24px; }
  .slide-product .slide-content { width: auto; margin: 0; padding: 0; flex: 0 1 520px; }
  .slide-product .slide-photos { position: static; transform: none; order: 2; height: 82%; flex: none; }
}

/* rodapé: pagamento e segurança */
.footer-trust { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 28px 48px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-trust .f-title { font-size: 18px; margin-bottom: 14px; }
.pay-list, .seal-list { list-style: none; margin: 0; padding: 0; }
.pay-list { display: grid; grid-template-columns: repeat(4, 52px); gap: 8px; }
.pay-list li { width: 52px; height: 33px; border-radius: 5px; overflow: hidden; }
.pay-list img { display: block; width: 100%; height: 100%; }
.pay-list .pay-pix { background: var(--white); display: flex; align-items: center; justify-content: center; gap: 3px; }
.pay-pix img { width: 13px; height: 13px; }
.pay-pix span { color: #32BCAD; font-weight: 700; font-size: 13px; letter-spacing: -.02em; }
.seal-list { display: flex; flex-wrap: wrap; gap: 18px 36px; }
.seal-list li { display: flex; align-items: center; gap: 12px; }
.seal-ico { width: 52px; height: 52px; border-radius: 999px; background: var(--gold); display: grid; place-items: center; flex: none; }
.seal-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--green-dark); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.seal-list li > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.seal-list small { color: #d8dbd4; font-size: 15px; }
.seal-list strong { color: var(--gold); font-size: 20px; font-weight: 800; font-style: italic; letter-spacing: -.01em; }
@media (min-width: 600px) { .pay-list { grid-template-columns: repeat(7, 52px); } }

/* banner cadastrado: foco da imagem acompanha o lado do texto */
.slide-banner.align-left .slide-bg img { object-position: left center; }
.slide-banner.align-right .slide-bg img { object-position: right center; }
@media (max-width: 800px) { .slide-banner .slide-bg img { object-position: 62% center !important; } }
.slide-title.is-long { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; }
.seal-img a { display: block; padding: 0; }
.seal-img img { display: block; height: 48px; width: auto; }
