/* =========================================================================
   Me da Um Brinde — Design System (v2 "Premium")
   Linguagem: minimalista, editorial, corporativa. Base neutra + 1 acento.
   Re-tematizar = alterar as variáveis em :root.
   ========================================================================= */
:root {
  /* Neutros / base */
  --ink:        #17140F;   /* texto e seções escuras (quase preto, quente) */
  --ink-2:      #4A443C;   /* texto secundário */
  --muted:      #8B8377;   /* labels, metadados */
  --line:       #E7E2DA;   /* hairlines */
  --line-2:     #D8D2C8;
  --bg:         #FFFFFF;
  --bg-soft:    #F7F4EF;   /* off-white / bone — seções e placeholders */
  --bg-soft-2:  #F1EDE6;

  /* Acento (usar com parcimônia) */
  --accent:     #98233A;   /* bordô sóbrio */
  --accent-700: #7C1B2F;
  --accent-tint:#F3E7E9;

  /* Forma */
  --radius:    8px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(23,20,15,.05);
  --shadow:    0 12px 40px rgba(23,20,15,.10);
  --shadow-lg: 0 30px 80px rgba(23,20,15,.22);
  --maxw:      1240px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.5; font-size: 16px;
  font-feature-settings: "ss01","cv01";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hidden { display: none !important; }
.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Micro-label / kicker */
.kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.eyebrow { display:inline-flex; align-items:center; gap:10px; font-size: 12px; font-weight: 600; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); }
.eyebrow::before { content:""; width: 26px; height:1px; background: var(--accent); display:inline-block; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; border-radius: var(--radius-sm); padding: 14px 26px;
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .08s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-soft); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.link-arrow { display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14px; color: var(--ink); border-bottom: 1px solid transparent; padding-bottom:2px; }
.link-arrow:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 76px; position: relative; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 34px; height: 34px; color: var(--accent); flex: none; }
.logo-mark .icon { width: 34px; height: 34px; stroke-width: 1.5; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text b { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.logo-text small { font-size: 9.5px; font-weight: 600; color: var(--muted); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; gap: 2px; margin-left: 6px; }
.nav a { padding: 9px 16px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14.5px; color: var(--ink-2); transition: .15s; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--accent); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.cart-btn { position: relative; background: var(--ink); color: #fff; border-radius: var(--radius-sm); padding: 12px 20px; font-weight: 600; font-size: 14px; display:inline-flex; align-items:center; gap:10px; border: none; }
.cart-btn .icon { width: 18px; height: 18px; stroke: #fff; }
.cart-btn:hover { background: #000; }
.cart-badge { position: absolute; top: -7px; right: -7px; min-width: 21px; height: 21px; padding: 0 6px; background: var(--accent); color: #fff; border-radius: 999px; font-size: 11.5px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }
.menu-toggle { display: none; background: none; border: none; color: var(--ink); padding: 4px; }
.menu-toggle .icon { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.hero-left { padding: 84px 64px 84px 0; display: flex; flex-direction: column; justify-content: center; max-width: 600px; }
.hero h1 { font-size: clamp(38px, 4.8vw, 64px); line-height: 1.0; letter-spacing: -.04em; font-weight: 800; margin: 22px 0 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-strip { display: flex; gap: 40px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-strip .s b { display:block; font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.hero-strip .s span { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.hero-visual { position: relative; background: var(--bg-soft); border-left: 1px solid var(--line); overflow: hidden; display:flex; align-items:center; justify-content:center; }
.hero-visual img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.hero-collage { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1px; width: 100%; height: 100%; background: var(--line); }
.hero-tile { background: var(--bg-soft); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; color: var(--ink-2); padding: 24px; }
.hero-tile .icon { width: 46px; height: 46px; stroke-width: 1.2; color: var(--ink); }
.hero-tile span { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-tile.dark { background: var(--ink); color: #fff; }
.hero-tile.dark .icon { color: #fff; }
.hero-tile.dark span { color: rgba(255,255,255,.6); }
.hero-tile.accent { background: var(--accent); color: #fff; }
.hero-tile.accent .icon { color:#fff; } .hero-tile.accent span { color: rgba(255,255,255,.75); }
.hero-visual.has-img .hero-collage { display: none; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: #fff; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 44px; padding: 15px 0; animation: marquee 36s linear infinite; }
.marquee-track span { font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 44px; }
.marquee-track span::after { content: "✶"; color: var(--accent); font-size: 11px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -.03em; font-weight: 700; margin: 12px 0 0; }
.section-head p { margin: 10px 0 0; color: var(--ink-2); max-width: 540px; font-size: 16px; }

/* ---------- Categorias ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cat-card { background: var(--bg); padding: 30px 26px; transition: .2s; cursor: pointer; text-align: left; display:flex; flex-direction:column; gap: 18px; min-height: 168px; }
.cat-card:hover { background: var(--bg-soft); }
.cat-card .icon { width: 30px; height: 30px; color: var(--ink); stroke-width: 1.4; }
.cat-card .ct { margin-top: auto; }
.cat-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 4px; letter-spacing: -.01em; }
.cat-card span { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.cat-card .go { color: var(--accent); font-size: 13px; font-weight: 600; opacity: 0; transition: .2s; margin-top: 6px; }
.cat-card:hover .go { opacity: 1; }

/* ---------- Coleções ---------- */
.collection-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.collection-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; cursor: pointer; transition: .2s; background: var(--bg); display:flex; flex-direction:column; min-height: 200px; }
.collection-card:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.collection-card .icon { width: 28px; height: 28px; color: var(--accent); stroke-width: 1.4; }
.collection-card:hover .icon { color: #fff; }
.collection-card h4 { margin: 20px 0 8px; font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.collection-card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.collection-card:hover p { color: rgba(255,255,255,.7); }
.collection-card .go { margin-top: auto; padding-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.collection-card:hover .go { color: var(--accent); }

/* ---------- Toolbar ---------- */
.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.search { flex: 1; min-width: 240px; display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 13px 18px; }
.search .icon { width: 18px; height: 18px; color: var(--muted); }
.search input { border: none; outline: none; background: none; width: 100%; font-size: 15px; color: var(--ink); }
.select { background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; font-weight: 500; color: var(--ink); outline: none; cursor: pointer; }
.chips { display:flex; gap:8px; flex-wrap:wrap; }
.chip { background: var(--bg); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--ink-2); transition: .15s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.result-count { color: var(--muted); font-size: 13px; margin: 0 0 18px; letter-spacing: .02em; }

/* ---------- Produtos (image-first / shop) ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 26px; }
.prod-card { background: none; border: none; display: flex; flex-direction: column; }
.prod-thumb { aspect-ratio: 1/1; display: grid; place-items: center; position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.prod-thumb .icon { width: 60px; height: 60px; color: var(--line-2); stroke-width: 1.1; transition: .2s; }
.prod-card:hover .prod-thumb .icon { color: var(--muted); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.prod-card:hover .prod-thumb img { transform: scale(1.045); }
.prod-view { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .04em; background: rgba(23,20,15,0); opacity: 0; transition: .22s; }
.prod-card:hover .prod-view { opacity: 1; background: rgba(23,20,15,.26); }
.prod-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 10.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; z-index: 1; }
.prod-body { padding: 16px 2px 0; display: flex; flex-direction: column; }
.prod-brand { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.prod-name { font-size: 15.5px; font-weight: 600; margin: 7px 0 5px; line-height: 1.3; letter-spacing: -.01em; }
.prod-meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.prod-actions { margin-top: auto; }
.prod-actions .btn { width: 100%; }
.added { background: var(--accent) !important; border-color: var(--accent) !important; color:#fff !important; }

.empty { text-align:center; padding: 80px 20px; color: var(--muted); }
.empty .icon { width: 40px; height: 40px; margin: 0 auto 8px; color: var(--line-2); }
.empty h2, .empty h3 { color: var(--ink); font-weight: 600; }

/* ---------- Drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(23,20,15,.45); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .22s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 440px; max-width: 92vw; z-index: 70; background: var(--bg); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: .01em; }
.drawer-close { background: none; border: none; color: var(--ink-2); padding: 4px; }
.drawer-close .icon { width: 22px; height: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 28px; }
.drawer-foot { padding: 22px 28px; border-top: 1px solid var(--line); background: var(--bg); }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item .thumb { width: 60px; height: 60px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line); display:grid; place-items:center; flex: none; }
.cart-item .thumb .icon { width: 26px; height: 26px; color: var(--muted); }
.cart-item .info { flex: 1; min-width: 0; }
.cart-item .info b { font-size: 14px; font-weight: 600; display:block; line-height:1.3; }
.cart-item .info small { color: var(--muted); font-size: 12px; }
.qty { display:inline-flex; align-items:center; border:1px solid var(--line-2); border-radius: var(--radius-sm); overflow:hidden; margin-top:10px; }
.qty button { width: 30px; height: 30px; border:none; background: var(--bg); font-size: 16px; color: var(--ink); display:grid; place-items:center; }
.qty button:hover { background: var(--bg-soft); }
.qty span { min-width: 36px; text-align:center; font-size: 14px; font-weight: 600; }
.cart-item .rm { background:none; border:none; color: var(--muted); font-size: 12px; align-self:flex-start; }
.cart-item .rm:hover { color: var(--accent); }

/* ---------- Formulário ---------- */
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); letter-spacing: .01em; }
.field label .req { color: var(--accent); }
.field input, .field textarea { width: 100%; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 13px 14px; font-size: 15px; font-family: inherit; color: var(--ink); outline: none; background: var(--bg); transition: border .15s; }
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 76px; }
.field .err { color: var(--accent); font-size: 12px; margin-top: 5px; display:none; }
.field.invalid .err { display:block; }
.field.invalid input, .field.invalid textarea { border-color: var(--accent); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align:center; }
.feedback { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500; margin-bottom: 14px; }
.feedback.bad { background: var(--accent-tint); color: var(--accent-700); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; opacity:0; pointer-events:none; transition: opacity .2s; }
.modal.open { opacity: 1; pointer-events: auto; background: rgba(23,20,15,.45); }
.modal-card { background: var(--bg); border-radius: var(--radius-lg); max-width: 840px; width: 100%; max-height: 88vh; overflow:hidden; display:grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg); }
.modal-media { background: var(--bg-soft); display:grid; place-items:center; border-right: 1px solid var(--line); }
.modal-media .icon { width: 120px; height: 120px; color: var(--line-2); stroke-width: 1; }
.modal-media img { width:100%; height:100%; object-fit:cover; }
.modal-info { padding: 40px; overflow-y:auto; }
.modal-info .prod-brand { font-size: 11px; }
.modal-info h2 { font-size: 26px; font-weight: 700; margin: 10px 0 16px; letter-spacing:-.02em; line-height:1.1; }
.modal-info .desc { color: var(--ink-2); font-size: 15px; line-height:1.6; margin-bottom: 24px; }
.spec { display:flex; gap: 8px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.spec b { color: var(--ink); font-weight:600; min-width: 130px; }
.spec span { color: var(--ink-2); }
.tags { display:flex; gap:8px; flex-wrap:wrap; margin: 20px 0 26px; }
.tag { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2); font-size: 11.5px; font-weight: 500; padding: 6px 12px; border-radius: 999px; letter-spacing:.04em; }
.modal-close { position:absolute; top: 20px; right: 20px; background: #fff; border:1px solid var(--line); width: 40px; height: 40px; border-radius: 999px; color: var(--ink); display:grid; place-items:center; box-shadow: var(--shadow-sm); }
.modal-close .icon { width: 20px; height: 20px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 72px 56px; text-align: center; }
.cta-band .kicker { color: #fff; opacity:.6; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.03em; margin: 16px 0 14px; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 30px; font-size: 17px; line-height:1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 72px 0 32px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h5 { color:#fff; font-size: 11.5px; margin: 0 0 18px; text-transform: uppercase; letter-spacing: .14em; font-weight:600; }
.site-footer a { display:block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.6); transition:.15s; }
.site-footer a:hover { color: #fff; }
.footer-brand .logo-mark { color: #fff; }
.footer-brand .logo-text b { color:#fff; } .footer-brand .logo-text small { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.7; margin-top:18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,.45); display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; letter-spacing:.02em; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color:#fff; padding: 14px 24px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14px; box-shadow: var(--shadow-lg); opacity:0; pointer-events:none; transition: .25s; z-index: 100; display:flex; align-items:center; gap:10px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .icon { width:18px; height:18px; stroke:#fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 0 56px; max-width: none; }
  .hero-visual { aspect-ratio: 3/4; min-height: auto; max-width: 420px; margin: 8px auto 0; border-left: none; border: 1px solid var(--line); border-radius: var(--radius-lg); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal-card { grid-template-columns: 1fr; } .modal-media { aspect-ratio: 16/10; border-right:none; border-bottom:1px solid var(--line); }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav { display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; flex-direction: column; gap: 2px; background: var(--bg); padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); z-index: 50; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; }
  .menu-toggle { display: block; }
  .cart-btn span.label { display: none; }
  .section { padding: 56px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 28px; }
  .hero-strip { gap: 26px; flex-wrap: wrap; }
}
@media (max-width: 440px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:13px; color:var(--muted); margin-bottom:22px; }
.breadcrumb a { color:var(--ink-2); }
.breadcrumb a:hover { color:var(--accent); }
.breadcrumb .sep { color:var(--line-2); }
.breadcrumb [aria-current] { color:var(--ink); font-weight:500; }

/* ---------- Página de produto ---------- */
.produto { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.produto-media { background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:1/1; display:grid; place-items:center; position:sticky; top:96px; }
.produto-media img { width:100%; height:100%; object-fit:cover; }
.produto-ph .icon { width:140px; height:140px; color:var(--line-2); stroke-width:1; }
.produto-info { padding-top:6px; }
.produto-info h1 { font-size:clamp(26px,3vw,38px); letter-spacing:-.03em; font-weight:800; margin:10px 0 16px; line-height:1.06; }
.produto-desc { font-size:16px; line-height:1.7; color:var(--ink-2); margin:0 0 24px; }
.produto-info .specs { margin-bottom:22px; }
.produto-nota { font-size:13px; color:var(--muted); margin-top:14px; text-align:center; }
a.tag:hover { border-color:var(--ink); color:var(--ink); }

/* ---------- Índice de ocasiões ---------- */
.ocasioes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.ocasiao-card { border:1px solid var(--line); border-radius:var(--radius); padding:28px; background:var(--bg); transition:.2s; display:flex; flex-direction:column; min-height:210px; }
.ocasiao-card:hover { background:var(--ink); border-color:var(--ink); color:#fff; }
.ocasiao-card .icon { width:30px; height:30px; color:var(--accent); stroke-width:1.4; }
.ocasiao-card:hover .icon { color:#fff; }
.ocasiao-card h3 { margin:18px 0 8px; font-size:19px; letter-spacing:-.01em; }
.ocasiao-card p { margin:0; font-size:13.5px; line-height:1.5; color:var(--ink-2); }
.ocasiao-card:hover p { color:rgba(255,255,255,.7); }
.ocasiao-card .go { margin-top:auto; padding-top:16px; font-size:12.5px; font-weight:600; color:var(--muted); display:inline-flex; align-items:center; gap:8px; }
.ocasiao-card .go .icon { width:15px; height:15px; color:inherit; stroke-width:1.8; }
.ocasiao-card:hover .go { color:var(--accent); }

@media (max-width: 860px) {
  .produto { grid-template-columns:1fr; gap:28px; }
  .produto-media { position:static; max-width:520px; }
  .ocasioes-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px) { .ocasioes-grid { grid-template-columns:1fr; } }

/* ---------- Paginação ---------- */
.pagination { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; align-items:center; margin-top:52px; }
.pagination .pg { min-width:40px; height:40px; padding:0 13px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--line-2); border-radius:var(--radius-sm); font-size:14px; font-weight:600; color:var(--ink-2); transition:.15s; }
.pagination .pg:hover { border-color:var(--ink); color:var(--ink); }
.pagination .pg.on { background:var(--ink); border-color:var(--ink); color:#fff; }
.pagination .pg-dots { padding:0 4px; color:var(--muted); align-self:flex-end; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position:fixed; right:22px; bottom:22px; z-index:50; width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff; display:grid; place-items:center; box-shadow:0 10px 30px rgba(37,211,102,.42); transition:.2s; }
.wa-float:hover { transform:scale(1.06); background:#20bd5a; }
.wa-float svg { width:30px; height:30px; }
@media (max-width:560px){ .wa-float { right:16px; bottom:16px; width:54px; height:54px; } }

/* ---------- Conteúdo (páginas Sobre / Como funciona / FAQ) ---------- */
.wrap-narrow { max-width:880px; }
.prosa { max-width:760px; font-size:16.5px; line-height:1.75; color:var(--ink-2); }
.prosa p { margin:0 0 18px; }
.prosa h2 { font-size:24px; color:var(--ink); letter-spacing:-.02em; margin:34px 0 12px; }
.prosa a, .pib a, .faq-a a { color:var(--accent); border-bottom:1px solid transparent; }
.prosa a:hover { border-color:var(--accent); }
.lista-check { list-style:none; padding:0; margin:0 0 18px; max-width:760px; }
.lista-check li { position:relative; padding:9px 0 9px 30px; border-bottom:1px solid var(--line); }
.lista-check li::before { content:"✓"; position:absolute; left:0; top:9px; color:var(--success); font-weight:700; }
.cta-inline { margin-top:48px; padding-top:34px; border-top:1px solid var(--line); text-align:center; }
.cta-inline p { color:var(--ink-2); margin:0 0 16px; font-size:16px; }

/* Passos (Como funciona) */
.passos { list-style:none; padding:0; margin:0; max-width:760px; display:flex; flex-direction:column; gap:16px; }
.passo { display:flex; gap:20px; align-items:flex-start; background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
.passo-num { flex:none; width:42px; height:42px; border-radius:50%; background:var(--ink); color:#fff; display:grid; place-items:center; font-weight:700; font-size:18px; }
.passo h3 { margin:2px 0 6px; font-size:18px; }
.passo p { margin:0; color:var(--ink-2); font-size:15px; line-height:1.6; }

/* FAQ accordion */
.faq { max-width:760px; border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { list-style:none; cursor:pointer; padding:20px 42px 20px 0; font-weight:600; font-size:16px; position:relative; color:var(--ink); }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:6px; top:17px; font-size:22px; font-weight:400; color:var(--accent); transition:.2s; }
.faq-item[open] summary::after { content:"−"; }
.faq-a { padding:0 0 20px; color:var(--ink-2); font-size:15px; line-height:1.65; max-width:680px; }
.faq-a p { margin:0; }

/* Bloco de informações do produto */
.produto-info-band { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; padding-top:40px; border-top:1px solid var(--line); }
.pib h3 { font-size:15px; margin:0 0 8px; letter-spacing:-.01em; }
.pib p { margin:0; font-size:14px; color:var(--ink-2); line-height:1.6; }
@media (max-width:760px){ .produto-info-band { grid-template-columns:1fr; gap:16px; } }

/* ---------- Ocasião em destaque (home) ---------- */
.occ-feature { position:relative; background:var(--occ,#2A6F97); border-radius:var(--radius-lg); padding:56px 52px; color:#fff; overflow:hidden; }
.occ-feature::after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(0,0,0,.30)); pointer-events:none; }
.occ-feature-in { position:relative; max-width:620px; }
.occ-badge { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; background:rgba(255,255,255,.18); padding:8px 15px; border-radius:999px; }
.occ-badge .icon { width:16px; height:16px; stroke:#fff; stroke-width:1.8; }
.occ-feature h2 { font-size:clamp(30px,4.2vw,46px); font-weight:800; letter-spacing:-.03em; line-height:1.03; margin:18px 0 12px; color:#fff; }
.occ-feature p { font-size:17px; line-height:1.6; color:rgba(255,255,255,.92); margin:0 0 28px; max-width:540px; }
.occ-feature-grid { margin-top:30px; }
@media (max-width:680px){ .occ-feature { padding:40px 26px; } }

/* ---------- Landing por profissão (hero dividido) ---------- */
.prof-hero { display:grid; grid-template-columns:1.04fr .96fr; min-height:620px; background:var(--cor,#26564A); color:#fff; overflow:hidden; }
.prof-hero-left { display:flex; flex-direction:column; justify-content:center; padding:72px 56px 64px max(28px, calc((100vw - 1240px)/2 + 28px)); }
.prof-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:#fff; background:rgba(255,255,255,.14); padding:8px 15px; border-radius:999px; align-self:flex-start; }
.prof-hero-left h1 { font-size:clamp(34px,4.6vw,56px); font-weight:800; letter-spacing:-.03em; line-height:1.04; margin:22px 0 16px; max-width:560px; }
.prof-hero-left p { font-size:17.5px; line-height:1.65; color:rgba(255,255,255,.9); max-width:520px; margin:0 0 30px; }
.prof-cta { display:flex; gap:14px; flex-wrap:wrap; }
.btn-ghost-light { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.5); }
.btn-ghost-light:hover { border-color:#fff; background:rgba(255,255,255,.12); }
.prof-strip { display:flex; gap:40px; margin-top:46px; padding-top:26px; border-top:1px solid rgba(255,255,255,.22); }
.prof-strip b { display:block; font-size:24px; font-weight:800; letter-spacing:-.02em; }
.prof-strip span { font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.65); }
.prof-hero-media { position:relative; min-height:620px; }
.prof-hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top; }
.prof-hero-media::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, var(--cor,#26564A) 0%, rgba(0,0,0,0) 16%); z-index:1; pointer-events:none; }
.prof-intro { font-size:19px; line-height:1.7; color:var(--ink-2); text-align:center; margin:0; }

.motivos-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.motivo { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:28px; }
.motivo-num { width:40px; height:40px; border-radius:50%; color:#fff; display:grid; place-items:center; font-weight:700; font-size:17px; margin-bottom:16px; }
.motivo h3 { font-size:17px; margin:0 0 8px; letter-spacing:-.01em; }
.motivo p { margin:0; font-size:14px; line-height:1.6; color:var(--ink-2); }

.datas-list { display:flex; flex-direction:column; max-width:820px; }
.data-item { display:grid; grid-template-columns:220px 1fr; gap:24px; padding:22px 0; border-bottom:1px solid var(--line); }
.data-item:last-child { border-bottom:none; }
.data-quando { font-weight:700; font-size:16px; letter-spacing:-.01em; }
.data-info h3 { margin:0 0 5px; font-size:17px; }
.data-info p { margin:0; color:var(--ink-2); font-size:14.5px; line-height:1.6; }
.ocasioes-extra { margin-top:36px; padding-top:28px; border-top:1px solid var(--line); max-width:820px; }
.ocasioes-extra h3 { font-size:16px; margin:0 0 14px; }

@media (max-width:980px){
  .motivos-grid { grid-template-columns:1fr 1fr; }
  .prof-hero { grid-template-columns:1fr; min-height:auto; }
  .prof-hero-left { padding:56px 28px 48px; }
  .prof-hero-media { min-height:auto; aspect-ratio:4/5; }
  .prof-hero-media::before { background:linear-gradient(180deg, var(--cor,#26564A) 0%, rgba(0,0,0,0) 14%); }
}
@media (max-width:680px){
  .motivos-grid { grid-template-columns:1fr; }
  .data-item { grid-template-columns:1fr; gap:6px; }
  .prof-strip { gap:24px; flex-wrap:wrap; }
}

/* ---------- E-book (isca digital) ---------- */
.ebook-hero { background:linear-gradient(135deg,#231E18 0%,var(--ink) 55%,#0E0C09 100%); color:#fff; padding:56px 0 0; overflow:hidden; }
.ebook-hero-in { display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:end; }
.ebook-hero-txt { padding-bottom:72px; }
.ebook-hero-txt h1 { font-size:clamp(32px,4.4vw,52px); font-weight:800; letter-spacing:-.035em; line-height:1.04; margin:20px 0 16px; }
.ebook-hero-txt > p { font-size:17.5px; line-height:1.6; color:rgba(255,255,255,.85); max-width:520px; margin:0 0 26px; }
.ebook-bullets { list-style:none; padding:0; margin:0 0 30px; }
.ebook-bullets li { display:flex; align-items:flex-start; gap:11px; padding:7px 0; font-size:15px; color:rgba(255,255,255,.9); }
.ebook-bullets .icon { width:18px; height:18px; stroke:var(--accent); stroke-width:2.2; flex:none; margin-top:2px; }
.ebook-hero-capa { display:flex; justify-content:center; align-items:flex-end; }
.ebook-hero-capa img { max-width:430px; width:100%; height:auto; filter:drop-shadow(0 24px 44px rgba(0,0,0,.55)); }

.ebook-caps { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.ebook-cap { display:flex; gap:18px; align-items:flex-start; border:1px solid var(--line); border-radius:var(--radius); padding:22px; background:var(--bg); }
.ebook-cap-num { font-size:15px; font-weight:800; color:var(--accent); letter-spacing:.04em; flex:none; padding-top:2px; }
.ebook-cap h3 { margin:0 0 5px; font-size:16.5px; letter-spacing:-.01em; }
.ebook-cap p { margin:0; font-size:14px; color:var(--ink-2); line-height:1.55; }

.ebook-form-wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.ebook-form-txt h2 { font-size:clamp(26px,3vw,36px); letter-spacing:-.03em; margin:12px 0 14px; }
.ebook-form-txt p { font-size:16.5px; line-height:1.65; color:var(--ink-2); margin:0 0 20px; }
.ebook-selo { display:inline-flex; align-items:center; gap:9px; font-size:13.5px; font-weight:600; color:var(--ink-2); background:var(--bg); border:1px solid var(--line); padding:10px 16px; border-radius:999px; }
.ebook-selo .icon { width:16px; height:16px; stroke:var(--success); stroke-width:2.2; }
.ebook-form-card { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow); }
.ebook-sucesso { text-align:center; padding:14px 4px; }
.ebook-sucesso .icon { width:44px; height:44px; stroke:var(--success); stroke-width:2; margin:0 auto 14px; fill:none; }
.ebook-sucesso h3 { margin:0 0 8px; font-size:20px; }
.ebook-sucesso p { color:var(--ink-2); font-size:14.5px; margin:0 0 20px; }

@media (max-width:980px){
  .ebook-hero-in { grid-template-columns:1fr; gap:28px; }
  .ebook-hero-txt { padding-bottom:0; }
  .ebook-hero-capa img { max-width:300px; }
  .ebook-caps { grid-template-columns:1fr; }
  .ebook-form-wrap { grid-template-columns:1fr; gap:30px; }
}

/* Banner do e-book no blog */
.ebook-cta-blog { display:grid; grid-template-columns:150px 1fr; gap:28px; align-items:center; background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:30px 34px; margin-bottom:34px; transition:.2s; }
.ebook-cta-blog:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.ebook-cta-blog img { width:100%; height:auto; border-radius:5px; box-shadow:0 8px 24px rgba(0,0,0,.4); }
.ebook-cta-blog .kicker { color:var(--accent); }
.ebook-cta-blog h2 { font-size:clamp(21px,2.4vw,27px); letter-spacing:-.025em; margin:10px 0 8px; color:#fff; }
.ebook-cta-blog p { margin:0 0 14px; color:rgba(255,255,255,.75); font-size:15px; line-height:1.55; }
.ebook-cta-blog .link-arrow { color:#fff; }
.ebook-cta-blog .link-arrow:hover { border-color:#fff; }
@media (max-width:680px){ .ebook-cta-blog { grid-template-columns:1fr; text-align:center; padding:26px 22px; } .ebook-cta-blog img { max-width:130px; margin:0 auto; } }

/* ---------- Blog ---------- */
.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.post-card { display:flex; flex-direction:column; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg); transition:.2s; }
.post-card:hover { box-shadow:var(--shadow); border-color:var(--line-2); }
.post-card-img { aspect-ratio:16/10; overflow:hidden; background:var(--bg-soft); }
.post-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.post-card:hover .post-card-img img { transform:scale(1.04); }
.post-card-body { padding:22px; display:flex; flex-direction:column; flex:1; }
.post-card-cat { font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); }
.post-card h3 { margin:10px 0 8px; font-size:18px; line-height:1.3; letter-spacing:-.015em; }
.post-card p { margin:0 0 16px; font-size:14px; color:var(--ink-2); line-height:1.55; flex:1; }
.post-card-meta { font-size:12.5px; color:var(--muted); }

.post-destaque { display:grid; grid-template-columns:1.15fr .85fr; gap:0; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:34px; background:var(--bg); transition:.2s; }
.post-destaque:hover { box-shadow:var(--shadow); }
.post-destaque-img { aspect-ratio:16/11; overflow:hidden; background:var(--bg-soft); }
.post-destaque-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.post-destaque:hover .post-destaque-img img { transform:scale(1.03); }
.post-destaque-body { padding:44px 40px; display:flex; flex-direction:column; justify-content:center; }
.post-destaque-body h2 { font-size:clamp(23px,2.6vw,32px); line-height:1.15; letter-spacing:-.025em; margin:12px 0 12px; }
.post-destaque-body p { font-size:16px; color:var(--ink-2); line-height:1.6; margin:0 0 20px; }

/* Artigo */
.post-head { padding:44px 0 30px; }
.post-head h1 { font-size:clamp(30px,4vw,46px); font-weight:800; letter-spacing:-.035em; line-height:1.08; margin:14px 0 16px; }
.post-lead { font-size:19px; line-height:1.6; color:var(--ink-2); margin:0 0 20px; }
.post-meta { display:flex; gap:10px; align-items:center; font-size:13.5px; color:var(--muted); }
.post-cover { margin-bottom:44px; }
.post-cover img { width:100%; height:auto; max-height:460px; object-fit:cover; border-radius:var(--radius-lg); border:1px solid var(--line); }
.post-body { font-size:17px; line-height:1.78; color:var(--ink-2); }
.post-body h2 { font-size:clamp(23px,2.6vw,29px); color:var(--ink); letter-spacing:-.025em; line-height:1.2; margin:44px 0 14px; }
.post-body h3 { font-size:19px; color:var(--ink); letter-spacing:-.015em; margin:30px 0 10px; }
.post-body p { margin:0 0 18px; }
.post-body ul, .post-body ol { margin:0 0 20px; padding-left:22px; }
.post-body li { margin-bottom:9px; }
.post-body strong { color:var(--ink); font-weight:600; }
.post-body a { color:var(--accent); border-bottom:1px solid transparent; }
.post-body a:hover { border-color:var(--accent); }
.post-body blockquote { margin:26px 0; padding:20px 26px; border-left:3px solid var(--accent); background:var(--bg-soft); border-radius:0 var(--radius) var(--radius) 0; font-size:17.5px; color:var(--ink); }
.post-body blockquote p:last-child { margin-bottom:0; }
.post-faq { margin-top:52px; padding-top:36px; border-top:1px solid var(--line); }
.post-faq h2 { font-size:26px; letter-spacing:-.025em; margin:0 0 20px; }

@media (max-width:980px){
  .post-grid { grid-template-columns:1fr 1fr; }
  .post-destaque { grid-template-columns:1fr; }
  .post-destaque-body { padding:32px 26px; }
}
@media (max-width:640px){ .post-grid { grid-template-columns:1fr; } .post-body { font-size:16.5px; } }

/* ---------- Calendário de datas ---------- */
.cal-legenda { display:inline-flex; align-items:center; gap:3px; font-size:.85em; color:var(--accent); font-weight:600; white-space:nowrap; }
.cal-legenda .icon { width:13px; height:13px; stroke:var(--accent); stroke-width:2.4; }
.cal-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cal-mes { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg); }
.cal-mes.on { border-color:var(--accent); box-shadow:0 0 0 1px var(--accent); }
.cal-mes-head { background:var(--bg-soft); padding:13px 18px; font-weight:700; font-size:15px; letter-spacing:-.01em; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; }
.cal-mes.on .cal-mes-head { background:var(--accent); color:#fff; border-bottom-color:var(--accent); }
.cal-agora { font-size:10.5px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; background:rgba(255,255,255,.22); padding:3px 8px; border-radius:999px; }
.cal-datas { list-style:none; margin:0; padding:8px 18px 14px; }
.cal-datas li { display:flex; gap:12px; align-items:baseline; padding:7px 0; border-bottom:1px solid var(--line); }
.cal-datas li:last-child { border-bottom:none; }
.cal-dia { flex:none; width:66px; font-size:12.5px; font-weight:600; color:var(--muted); }
.cal-nome { font-size:14px; color:var(--ink-2); line-height:1.35; }
.cal-nome.tem-link { color:var(--ink); font-weight:600; display:inline-flex; align-items:center; gap:5px; }
.cal-nome.tem-link .icon { width:13px; height:13px; stroke:var(--accent); stroke-width:2.4; transition:transform .15s; }
.cal-nome.tem-link:hover { color:var(--accent); }
.cal-nome.tem-link:hover .icon { transform:translateX(3px); }
@media (max-width:1080px){ .cal-grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width:760px){ .cal-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .cal-grid { grid-template-columns:1fr; } .cal-dia { width:58px; } }

/* ---------- Banner editorial de categoria ---------- */
.cat-hero { display:grid; grid-template-columns:1.05fr .95fr; min-height:400px; background:var(--ink); color:#fff; overflow:hidden; }
.cat-hero-left { display:flex; flex-direction:column; justify-content:center; padding:56px 48px 56px max(28px, calc((100vw - 1240px)/2 + 28px)); }
.cat-hero-left .breadcrumb { margin-bottom:26px; }
.cat-hero-left .breadcrumb, .cat-hero-left .breadcrumb a { color:rgba(255,255,255,.6); }
.cat-hero-left .breadcrumb a:hover { color:#fff; }
.cat-hero-left .breadcrumb [aria-current] { color:rgba(255,255,255,.9); }
.cat-hero-left .breadcrumb .sep { color:rgba(255,255,255,.3); }
.cat-hero-left .kicker { color:var(--accent-tint, #F3E7E9); opacity:.85; }
.cat-hero-left h1 { font-size:clamp(30px,3.8vw,46px); font-weight:800; letter-spacing:-.03em; line-height:1.05; margin:14px 0 12px; }
.cat-hero-left p { font-size:16.5px; line-height:1.65; color:rgba(255,255,255,.82); max-width:520px; margin:0; }
.cat-hero-media { position:relative; min-height:400px; }
.cat-hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cat-hero-media::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, var(--ink) 0%, rgba(0,0,0,0) 18%); z-index:1; pointer-events:none; }
/* fallback: se a foto ainda não existir, o banner vira só o painel escuro (sem quebra) */
.cat-hero--noimg { grid-template-columns:1fr; min-height:auto; }
.cat-hero--noimg .cat-hero-media { display:none; }
@media (max-width:980px){
  .cat-hero { grid-template-columns:1fr; min-height:auto; }
  .cat-hero-left { padding:44px 28px 36px; }
  .cat-hero-media { min-height:auto; aspect-ratio:16/10; }
  .cat-hero-media::before { background:linear-gradient(180deg, var(--ink) 0%, rgba(0,0,0,0) 16%); }
}

/* ---------- Galeria do produto + hover ambientado ---------- */
.prod-thumb .thumb-amb { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .35s ease; }
.prod-card:hover .prod-thumb .thumb-amb { opacity:1; }
.produto-media-col { position:sticky; top:96px; }
.produto-media-col .produto-media { position:static; }
.galeria-thumbs { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.galeria-thumb { width:76px; height:76px; padding:0; border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; background:var(--bg-soft); cursor:pointer; transition:.15s; }
.galeria-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.galeria-thumb:hover { border-color:var(--ink); }
.galeria-thumb.on { border-color:var(--ink); box-shadow:0 0 0 1px var(--ink); }

/* Cores disponíveis (swatches) */
.cores-bloco { margin-top:20px; }
.cores-titulo { font-size:13px; color:var(--ink-2); margin-bottom:10px; }
.cores-titulo span { color:var(--muted); }
.cores-titulo b { color:var(--ink); font-weight:600; }
.cores-swatches { display:flex; flex-wrap:wrap; gap:8px; }
.cor-swatch { width:34px; height:34px; padding:0; border:1px solid var(--line); border-radius:50%; background:none; cursor:pointer; display:grid; place-items:center; transition:.15s; }
.cor-swatch:hover { border-color:var(--muted); transform:translateY(-1px); }
.cor-swatch.on { border-color:var(--ink); box-shadow:0 0 0 2px var(--bg),0 0 0 3px var(--ink); }
.cor-dot { width:22px; height:22px; border-radius:50%; background:#ccc; box-shadow:inset 0 0 0 1px rgba(0,0,0,.12); }
.cor-transp { background:linear-gradient(135deg,#fff 45%,#d8d2c8 46% 54%,#fff 55%); }
.cor-multi { background:conic-gradient(#C1272D,#F2C300,#1E7A46,#274690,#6B3FA0,#C1272D); }
@media (max-width:860px){ .produto-media-col { position:static; max-width:520px; } }

/* Hub de profissões */
.prof-hub-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.prof-hub-card { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg); transition:.2s; display:flex; flex-direction:column; }
.prof-hub-card:hover { box-shadow:var(--shadow); border-color:var(--line-2); }
.prof-hub-img { aspect-ratio:16/10; overflow:hidden; background:var(--bg-soft); }
.prof-hub-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.prof-hub-card:hover .prof-hub-img img { transform:scale(1.04); }
.prof-hub-body { padding:22px; }
.prof-hub-body h3 { margin:0 0 8px; font-size:19px; letter-spacing:-.01em; }
.prof-hub-body p { margin:0 0 14px; font-size:14px; color:var(--ink-2); line-height:1.55; }
@media (max-width:900px){ .prof-hub-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .prof-hub-grid { grid-template-columns:1fr; } }
