/* =========================================================
   Site público — CSS puro (sem build step / sem Tailwind)
   ========================================================= */

:root {
  --primary: #000000;
  --secondary: #dcb35a;
  --accent: #eab532;
  --text-dark: #000000;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --bg-soft: #f8f9fa;
  --bg-soft-2: #f9f9f7;
  --border-soft: #e9e9e7;
  --radius: 6px;
  --font-serif: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }

.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 10px; margin-bottom: 1.25rem;
}
.eyebrow .line { width: 2rem; height: 1px; background: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 1rem 2rem; font-size: 10px; font-weight: 800; text-transform: uppercase; border-radius: 999px; border: none; transition: all .3s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-gold { background: var(--secondary); color: #fff; }
.btn-gold:hover { background: #000; }
.btn-outline { background: transparent; border: 1px solid #d1d5db; color: var(--text-muted); }
.btn-outline:hover { border-color: var(--text-dark); color: var(--text-dark); }
.link-underline {
  display: inline-flex; align-items: center; gap: 0.75rem; font-size: 10px; font-weight: 700;
  text-transform: uppercase; color: var(--primary);
  border-bottom: 1px solid rgba(0,0,0,.12); padding-bottom: 0.4rem; transition: border-color .3s ease;
}
.link-underline:hover { border-color: var(--accent); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; box-shadow: 0 1px 10px rgba(0,0,0,.06); padding: 0.5rem 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; padding-bottom: 0.6rem; }
.navbar-logo { height: 52px; width: auto; }
.navbar-brand-text { font-family: var(--font-serif); font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.navbar-menu { display: flex; align-items: center; gap: 2rem; }
.navbar-link {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  color: var(--text-dark); padding: 0.5rem 0; border-bottom: 2px solid transparent; transition: color .2s ease;
}
.navbar-link:hover, .navbar-link.is-active { color: var(--secondary); border-color: var(--secondary); }
.navbar-cta {
  background: var(--secondary); color: #fff; padding: 0.65rem 1.5rem; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.navbar-cta:hover { background: var(--primary); }
.navbar-toggle { display: none; background: none; border: none; color: var(--text-dark); padding: 0.4rem; }

@media (max-width: 900px) {
  .navbar-toggle { display: block; }
  .navbar-menu {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 0; max-height: 0; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: max-height .3s ease;
  }
  .navbar-menu.is-open { max-height: 480px; }
  .navbar-link, .navbar-cta { padding: 1rem 1.5rem; border-radius: 0; text-align: center; border-bottom: 1px solid var(--border-soft); }
  .navbar-cta { margin: 0.75rem 1.5rem; border-radius: 999px; }
}

/* ---------- Page header (hero interno) ---------- */
.page-header {
  position: relative; min-height: 320px; height: 42vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: #000; text-align: center; padding-top: 90px;
}
.page-header-bg { position: absolute; inset: 0; z-index: 0; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-header-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #000 0%, transparent 60%), rgba(0,0,0,.2);
}
.page-header-content { position: relative; z-index: 1; max-width: 800px; padding: 0 1.5rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.breadcrumb a, .breadcrumb span {
  font-size: 10px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.breadcrumb .current { color: var(--secondary); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.page-header h1 { font-size: 2.4rem; color: #fff; font-weight: 800; margin-bottom: 0.75rem; }
.page-header h1 .accent { color: var(--secondary); }
.page-header p { color: rgba(255,255,255,.6); font-size: 0.85rem; font-weight: 300; }
@media (min-width: 768px) { .page-header h1 { font-size: 3.2rem; } }

/* ---------- Hero home ---------- */
.hero-video { position: relative; width: 100%; background: #000; padding-top: 88px; overflow: hidden; }
.hero-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 92vh; overflow: hidden; }
.hero-video-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 160%; height: 160%;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero-video-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-video-slide.is-active { opacity: 1; z-index: 1; }
.hero-video-wrap::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
@media (max-width: 640px) { .hero-video-wrap { aspect-ratio: 9/16; } }

/* ---------- Faixa de cotações (TradingView) ---------- */
.ticker-wrap { border-bottom: 1px solid var(--border-soft); }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-soft { background: var(--bg-soft-2); }
.section-tight { padding: 3rem 0; }
.section-head { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; align-items: start; }
.section-head h2 { font-size: 2.4rem; color: var(--text-dark); font-weight: 800; line-height: 1; }
.section-head h2 em { font-style: italic; font-weight: 400; color: rgba(38,38,38,.8); }
.section-head p { color: rgba(38,38,38,.7); font-size: 0.95rem; font-weight: 300; line-height: 1.7; max-width: 32rem; }
@media (min-width: 992px) {
  .section-head { grid-template-columns: 7fr 5fr; }
  .section-head h2 { font-size: 3.6rem; }
  .section-head p { padding-top: 3rem; }
}

/* ---------- Institutional split ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-media { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 4px; background: var(--bg-soft); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h1, .split h2 { font-size: 2.2rem; color: var(--primary); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.15; }
.split p.body-text { color: #000000; font-size: 0.92rem; line-height: 1.8; white-space: pre-line; max-width: 34rem; }

/* ---------- Galeria/carrossel do bloco "Sobre" (Home) ---------- */
.sobre-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.sobre-slide.is-active { opacity: 1; }
.sobre-dots { position: absolute; left: 0; right: 0; bottom: 1.25rem; display: flex; justify-content: center; gap: 0.5rem; z-index: 2; }
.sobre-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.55); border: none; padding: 0; cursor: pointer; transition: all .25s ease; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.sobre-dot:hover { background: rgba(255,255,255,.85); }
.sobre-dot.is-active { background: #fff; width: 22px; }

/* ---------- Cards de produto ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; transition: opacity .2s ease; scroll-margin-top: 110px; }
.card-grid.is-loading { opacity: .4; pointer-events: none; }
@media (min-width: 768px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.featured-slide { display: none; }
.featured-slide.is-active { display: grid; }
.featured-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.featured-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border-soft); border: none; padding: 0; cursor: pointer; transition: all .25s ease; }
.featured-dot:hover { background: var(--secondary); opacity: .6; }
.featured-dot.is-active { background: var(--secondary); width: 22px; }

.product-card { display: block; background: #D8D9D9; border: 1px solid var(--border-soft); padding: 0.5rem; text-decoration: none; color: inherit; transition: border-color .3s ease, box-shadow .3s ease; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.product-card:hover { border-color: rgba(220,179,90,.35); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.product-card-media { aspect-ratio: 390/310; background: var(--bg-soft); overflow: hidden; margin-bottom: 1.5rem; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s ease; }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-body { padding: 0.5rem 1.25rem 1.25rem; }
.product-card-cat { color: #000000; font-weight: 700; font-size: 9px; text-transform: uppercase; display: block; margin-bottom: 0.6rem; }
.product-card-title { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 800; color: #000000; margin-bottom: 0.75rem; line-height: 1.1; text-transform: uppercase; }
.product-card-desc { color: #000000; font-size: 0.85rem; font-weight: 300; line-height: 1.6; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer { border-top: 1px solid var(--bg-soft); padding-top: 1.25rem; }
.product-card-footer .link-underline { width: 100%; justify-content: center; padding: 0.9rem 1rem; background: #dcb35a; color: #000000; border: 1px solid #dcb35a; border-radius: 6px; transition: background .3s ease, border-color .3s ease, color .3s ease; }
.product-card:hover .product-card-footer .link-underline { background: #000000; color: #ffffff; border-color: #000000; }

.empty-note { color: #9ca3af; font-size: 0.9rem; padding: 2rem 0; grid-column: 1 / -1; text-align: center; }

/* ---------- Banner slider (sem JS de arrasto — CSS puro com fade automático) ---------- */
.banner-slider { position: relative; width: 100%; aspect-ratio: 1280/379; overflow: hidden; margin-bottom: 5rem; background: rgba(0,0,0,.04); }
.banner-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.banner-slide.is-active { opacity: 1; }
.banner-slide picture { display: block; width: 100%; height: 100%; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .banner-slider { aspect-ratio: 1/1; } }
.banner-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.85); color: var(--text-dark);
  cursor: pointer; transition: background 0.2s, opacity 0.2s;
  opacity: 0.75;
}
.banner-nav:hover { background: #fff; opacity: 1; }
.banner-nav.prev { left: 1rem; }
.banner-nav.next { right: 1rem; }
@media (max-width: 640px) {
  .banner-nav { width: 34px; height: 34px; }
  .banner-nav.prev { left: 0.5rem; }
  .banner-nav.next { right: 0.5rem; }
}

/* ---------- Quem atendemos (grid bordas) ---------- */
.pillar-grid { display: grid; grid-template-columns: 1fr; border: 1px solid rgba(255,255,255,.3); }
@media (min-width: 768px) { .pillar-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar-card { background: #dcb35a; padding: 3rem; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); transition: background .4s ease, color .4s ease; }
.pillar-card:hover { background: rgba(255,255,255,.5); color: var(--text-dark); }
.pillar-card svg { margin-bottom: 2.5rem; color: #fff; transition: color .4s ease; }
.pillar-card:hover svg { color: rgba(38,38,38,.4); }
.pillar-card h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; transition: color .4s ease; }
.pillar-card:hover h4 { color: var(--text-dark); }
.pillar-card p { color: rgba(255,255,255,.9); font-size: 0.78rem; font-weight: 300; line-height: 1.6; transition: color .4s ease; }
.pillar-card:hover p { color: rgba(38,38,38,.6); }

/* ---------- Social / conecte-se ---------- */
.social-section { background: var(--bg-soft); border-top: 1px solid rgba(38,38,38,.1); border-bottom: 1px solid rgba(38,38,38,.1); }
.social-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 992px) { .social-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.social-grid h2 { font-size: 2.5rem; color: var(--text-dark); font-weight: 800; margin-bottom: 1.5rem; line-height: 1; }
.social-grid h2 em { font-style: italic; font-weight: 400; color: rgba(0,0,0,1); }
.social-grid > div > p { color: rgba(0,0,0,.6); font-size: 1.05rem; font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; max-width: 30rem; }
.social-icons { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-icon-btn { width: 3.2rem; height: 3.2rem; border-radius: 999px; background: var(--secondary); color: #fff; display: flex; align-items: center; justify-content: center; transition: opacity .3s ease; }
.social-icon-btn:hover { opacity: 0.85; }

.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.instagram-post { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 4px; background: var(--bg-soft); }
.instagram-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.instagram-post:hover img { transform: scale(1.08); }
.instagram-post::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s ease; }
.instagram-post:hover::after { background: rgba(0,0,0,.15); }

/* ---------- Central de atendimento ---------- */
.support-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 992px) { .support-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.support-grid h2 { font-size: 2.6rem; color: var(--primary); font-weight: 800; line-height: 1; margin-bottom: 1.5rem; }
.support-grid h2 em { font-style: italic; font-weight: 400; color: #000000; }
.support-intro { color: #6b7280; font-size: 1.05rem; font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
.support-quote { padding: 1.75rem; background: var(--bg-soft-2); border-left: 4px solid var(--accent); font-style: italic; color: #000000; font-size: 0.9rem; }
.support-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .support-cards { grid-template-columns: 1fr 1fr; } }
.support-card { background: #dcb35a; border: 1px solid transparent; padding: 1.75rem; border-radius: 4px; transition: all .3s ease; }
.support-card:hover { border-color: rgba(234,181,50,.3); background: #fff; }
.support-card .icon-box { width: 3rem; height: 3rem; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border: 1px solid var(--border-soft); color: var(--accent); }
.support-card h4 { font-size: 1.1rem; color: var(--primary); font-weight: 700; margin-bottom: 0.75rem; }
.support-card p { color: #000; font-size: 0.85rem; font-weight: 300; line-height: 1.6; margin-bottom: 1.5rem; }

/* ---------- Produtos: listagem ---------- */
.catalog-layout { display: flex; flex-direction: column; gap: 3rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 900px) { .catalog-layout { flex-direction: row; align-items: flex-start; } }
.catalog-sidebar { width: 100%; flex-shrink: 0; }
@media (min-width: 900px) { .catalog-sidebar { width: 230px; } }
.filter-title { font-size: 12px; font-weight: 900; text-transform: uppercase; color: #000000; margin-bottom: 1.25rem; }
.search-box { position: relative; margin-bottom: 2.5rem; }
.search-box input { width: 100%; border: none; border-bottom: 2px solid var(--border-soft); padding: 0.75rem 2rem 0.75rem 0; font-size: 0.95rem; background: transparent; outline: none; }
.search-box input:focus { border-color: var(--secondary); }
.search-box button { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; color: #9ca3af; }
.category-list { display: flex; flex-direction: column; gap: 0.6rem; }
.category-group { display: flex; flex-direction: column; }
.category-row { display: flex; align-items: stretch; gap: 0.4rem; }
.category-btn {
  display: block; flex: 1; min-width: 0; text-align: left; padding: 0.9rem 1rem; font-size: 12px; font-weight: 700;
  text-transform: uppercase; border: 1px solid var(--border-soft); border-radius: 4px;
  background: #fff; color: #000000; transition: all .2s ease;
}
.category-btn:hover { background: #d8d9d9; border-color: #d1d5db; }
.category-btn.is-active { background: var(--secondary); color: #000000; border-color: var(--secondary); font-weight: 800; }
.category-toggle {
  flex-shrink: 0; width: 38px; border: 1px solid var(--border-soft); border-radius: 4px; background: #fff;
  color: #000000; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.category-toggle:hover { background: var(--bg-soft); border-color: #d1d5db; }
.category-toggle svg { transition: transform .25s ease; }
.category-group.is-open > .category-row .category-toggle { background: var(--bg-soft); }
.category-group.is-open > .category-row .category-toggle svg { transform: rotate(180deg); }
.subcategory-list { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; margin-left: 0.75rem; }
.subcategory-list-inner { overflow: hidden; display: flex; flex-direction: column; gap: 0.3rem; }
.category-group.is-open > .subcategory-list { grid-template-rows: 1fr; margin-top: 0.5rem; margin-bottom: 0.6rem; }
.subcategory-btn {
  display: block; padding: 0.6rem 0.75rem; font-size: 11px; font-weight: 700; text-transform: uppercase;
  color: #000000; border: 1px solid transparent; border-radius: 4px; background: var(--bg-soft); transition: all .2s ease;
}
.subcategory-btn:hover { color: #000000; background: #dcb35a; }
.subcategory-btn.is-active { color: #000000; background: var(--secondary); border-color: var(--secondary); font-weight: 800; }
.catalog-main { flex: 1; min-width: 0; }

/* ---------- Produto: detalhe ---------- */
.product-gallery-main { position: relative; aspect-ratio: 778/612; background: var(--bg-soft); overflow: hidden; border-radius: 4px; border: 1px solid var(--border-soft); margin-bottom: 1.5rem; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs-carousel { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.product-thumbs-viewport { min-width: 0; flex: 1; overflow: hidden; }
.product-thumbs-track { display: flex; gap: 0.75rem; transition: transform .3s ease; }
.product-thumbs-track .thumb-link { flex: 0 0 calc((100% - 3rem) / 5); aspect-ratio: 1/1; overflow: hidden; border-radius: 4px; border: 2px solid transparent; opacity: .65; transition: all .2s ease; }
.product-thumbs-track .thumb-link.is-active, .product-thumbs-track .thumb-link:hover { opacity: 1; border-color: var(--secondary); }
.product-thumbs-track img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs-nav { display: flex; align-items: center; justify-content: center; flex: 0 0 2rem; width: 2rem; height: 2rem; padding: 0; border: 1px solid var(--border-soft); border-radius: 4px; background: var(--bg-soft); color: var(--primary); cursor: pointer; }
.product-thumbs-nav:disabled { opacity: .3; cursor: default; }

.product-detail-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 6rem; }
@media (min-width: 992px) { .product-detail-grid { grid-template-columns: 7fr 5fr; gap: 5rem; } }
.product-info h1, .product-info h2 { font-size: 2.6rem; color: var(--primary); font-weight: 800; line-height: 1; text-transform: uppercase; margin-bottom: 1.5rem; }
.product-info .short-desc { color: #6b7280; font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.product-actions { display: flex; flex-direction: column; gap: 1rem; }
.product-actions .btn { width: 100%; padding: 1.1rem; }
.product-actions .btn-primary { background: #dcb35a; color: #000000; }
.product-actions .btn-primary:hover { background: #000000; color: #ffffff; }

.product-options { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px dashed var(--border-soft); }
.product-options-label { display: flex; align-items: center; gap: 0.6rem; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 0.9rem; }
.product-options-label .dot { width: 8px; height: 8px; border-radius: 50%; background: #dcb35a; box-shadow: 0 0 0 3px rgba(220,179,90,.25); }
.product-options-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.product-option-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff8ea; color: #8a6100; font-size: 0.85rem; font-weight: 800;
  padding: 0.55rem 1.1rem; border-radius: 0.6rem; border: 1.5px solid #dcb35a;
  box-shadow: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.product-option-tag svg { flex-shrink: 0; color: #dcb35a; transition: color .2s ease; }
.product-option-tag:hover { background: #dcb35a; color: #000000; transform: translateY(-2px); }
.product-option-tag:hover svg { color: #000000; }

.product-body-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; border-top: 1px solid var(--border-soft); padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 992px) { .product-body-grid { grid-template-columns: 8fr 4fr; gap: 4rem; } }
.desc-block h3 { font-size: 1.7rem; margin-bottom: 1.5rem; }
.desc-block p { color: #000000; line-height: 1.85; font-size: 1.02rem; font-weight: 300; margin-bottom: 1.25rem; }
.desc-content { color: #000000; line-height: 1.85; font-size: 1.02rem; font-weight: 300; }
.desc-content p, .desc-content ul, .desc-content ol { margin: 0 0 1.25rem; }
.desc-content ul, .desc-content ol { padding-left: 1.5rem; }
.desc-content a { color: var(--secondary); text-decoration: underline; }
/* Garante que a formatação vinda do editor apareça igual no site */
.desc-content div { margin: 0 0 0.5rem; }
.desc-content b, .desc-content strong { font-weight: 700; }
.desc-content i, .desc-content em { font-style: italic; }
.desc-content u { text-decoration: underline; }
.desc-content s, .desc-content strike { text-decoration: line-through; }
.desc-content h2, .desc-content h3, .desc-content h4, .desc-content h5, .desc-content h6 { margin: 1.75rem 0 0.75rem; font-weight: 700; line-height: 1.3; color: #000; }
.desc-content h2 { font-size: 1.5rem; }
.desc-content h3 { font-size: 1.25rem; }
.desc-content h4 { font-size: 1.05rem; }
.desc-content blockquote { margin: 0 0 1.25rem; padding: 0.5rem 1rem; border-left: 3px solid var(--secondary); font-style: italic; color: var(--text-muted); }
.desc-content hr { border: 0; border-top: 1px solid var(--border-soft); margin: 1.75rem 0; }
.desc-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 0.5rem 0; }
.desc-content table { border-collapse: collapse; width: 100%; margin: 0 0 1.25rem; }
.desc-content th, .desc-content td { border: 1px solid var(--border-soft); padding: 0.5rem 0.75rem; text-align: left; vertical-align: top; }
.product-video { margin-top: 3rem; }
.product-video h3 { font-size: 1.7rem; margin-bottom: 1.5rem; }
.product-video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; border-radius: 6px; }
.product-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.list-block-grid { display: grid; grid-template-columns: 1fr; align-items: start; align-self: start; gap: 2rem; width: 100%; margin-top: 0; }
@media (min-width: 992px) { .list-block-grid { grid-column: 2; grid-row: 1; } }
.list-block { align-self: start; background: rgba(0,0,0,.015); padding: 1.75rem; border-radius: 4px; border: 1px solid var(--border-soft); }
.list-block h4 { font-size: 10px; font-weight: 900; text-transform: uppercase; color: var(--primary); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem; }
.list-block h4 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.list-block ul { display: flex; flex-direction: column; gap: 0.85rem; }
.list-block li { display: flex; gap: 0.75rem; font-size: 0.85rem; color: #6b7280; line-height: 1.5; }
.list-block li svg { flex-shrink: 0; color: var(--secondary); margin-top: 0.15rem; }

.specs-box { box-sizing: border-box; width: 100%; max-width: 100%; overflow: hidden; margin-bottom: 2rem; background: var(--bg-soft); padding: 2rem; border: 1px solid var(--border-soft); border-radius: 6px; }
.specs-box h3 { font-size: 1.4rem; color: #000000; margin-bottom: 1.5rem; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,.12); gap: 1rem; min-width: 0; }
.spec-row:last-child { border-bottom: none; }
.spec-label { min-width: 0; font-size: 9px; font-weight: 700; text-transform: uppercase; color: #000000; overflow-wrap: anywhere; }
.spec-value { min-width: 0; font-size: 0.85rem; font-weight: 700; color: #000000; text-align: right; overflow-wrap: anywhere; }

.related-section { padding: 3.5rem 0; border-top: 1px solid var(--border-soft); }
.related-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
.related-head h2 { font-size: 2rem; color: var(--primary); font-weight: 800; }

/* ---------- Quem somos ---------- */
.pillars-mini-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pillars-mini-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-mini-card { background: #fff; padding: 2.5rem; border: 1px solid var(--border-soft); border-radius: 4px; transition: all .3s ease; }
.pillar-mini-card:hover { border-color: var(--secondary); box-shadow: 0 15px 35px rgba(0,0,0,.06); transform: translateY(-3px); }
.pillar-mini-card .icon-circle { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; color: var(--secondary); }
.pillar-mini-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; }
.pillar-mini-card p { color: #6b7280; font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.commit-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .commit-list { grid-template-columns: 1fr 1fr; } }
.commit-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 500; color: #374151; }
.commit-item svg { color: var(--secondary); flex-shrink: 0; }
.quote-box { margin-top: 2rem; padding: 1.75rem; border-left: 4px solid var(--secondary); background: var(--bg-soft); font-style: italic; color: #374151; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 5rem; } }
.contact-form-card { background: #fff; padding: 2rem; border: 1px solid var(--border-soft); border-radius: 1rem; position: relative; overflow: hidden; }
.contact-form-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--secondary); }
@media (min-width: 768px) { .contact-form-card { padding: 3rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.75rem; }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 0.8rem; font-weight: 700; color: #000000; margin-bottom: 0.5rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg-soft-2); border: 1px solid var(--border-soft); border-radius: 0.75rem;
  padding: 0.9rem 1.1rem; font-size: 0.9rem; font-family: inherit; outline: none; transition: all .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--secondary); background: #fff; }
.form-field textarea { resize: vertical; min-height: 110px; }
.field-error { color: #dc2626; font-size: 0.75rem; margin-top: 0.4rem; }
.form-alert { padding: 0.9rem 1.1rem; border-radius: 0.75rem; font-size: 0.85rem; margin-bottom: 1.5rem; }
.form-alert.error { background: #fef2f2; border: 1px solid #fee2e2; color: #dc2626; }
.form-alert.success { background: #f0fdf4; border: 1px solid #dcfce7; color: #16a34a; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit { width: 100%; background: #dcb35a; }
.contact-success { text-align: center; padding: 3rem 1rem; }
.contact-success svg { color: var(--secondary); margin: 0 auto 1.5rem; }
.contact-success h4 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.contact-success p { color: #6b7280; font-size: 0.9rem; }

.contact-info-card { background: #fff; padding: 2rem; border: 1px solid var(--border-soft); border-radius: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .contact-info-card { padding: 2.5rem; } }
.contact-info-group { margin-bottom: 2rem; }
.contact-info-group:last-child { margin-bottom: 0; }
.contact-info-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-info-heading .icon-circle { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(220,179,90,.12); display: flex; align-items: center; justify-content: center; color: var(--secondary); }
.contact-info-heading h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #000000; font-family: var(--font-sans); }
.contact-phone-item, .contact-email-item { margin-bottom: 1.5rem; }
.contact-phone-item:last-child, .contact-email-item:last-child { margin-bottom: 0; }
.contact-item-label { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--secondary); opacity: .8; margin-bottom: 0.3rem; display: block; }
.contact-phone-item a { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #000000; display: inline-flex; align-items: center; gap: 0.6rem; }
.contact-phone-item a svg { flex-shrink: 0; color: var(--secondary); }
.contact-phone-item a:hover, .contact-email-item a:hover { color: var(--secondary); }
.contact-email-item a { font-size: 0.95rem; font-weight: 500; color: #000000; }
.address-block { padding-left: 1.5rem; border-left: 1px solid var(--border-soft); margin-bottom: 2rem; }
.address-block:last-child { margin-bottom: 0; }
.address-block h5 { font-size: 10px; font-weight: 900; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.address-block address { margin: 0; font-style: normal; font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: #000000; }
.address-block .map-link { display: inline-block; margin-top: 0.5rem; font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--secondary); }
.contact-map { margin-top: 2rem; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border-soft); line-height: 0; }
.contact-map iframe { display: block; width: 100%; height: 320px; border: 0; }
.home-map { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border-soft); line-height: 0; }
.home-map iframe { display: block; width: 100%; height: 300px; border: 0; }
@media (min-width: 768px) { .home-map iframe { height: 340px; } }

/* ===== Seletor de idioma (bandeiras) — Google Tradutor via proxy translate.goog ===== */
/* Nas páginas traduzidas o Google injeta uma barra no topo e desloca o <body>. */
.goog-te-banner-frame, iframe.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* <details> = dropdown nativo (abre/fecha sem JS). */
.lang-switcher { position: relative; display: inline-block; }
.lang-switcher > summary {
  list-style: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 999px;
  padding: 0.3rem 0.55rem 0.3rem 0.35rem; cursor: pointer; line-height: 1;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  color: var(--text-dark); text-transform: uppercase;
}
.lang-switcher > summary::-webkit-details-marker { display: none; }
.lang-switcher > summary::marker { content: ''; }
.lang-switcher > summary:hover { border-color: var(--secondary); }
.lang-switcher .lang-caret { flex-shrink: 0; transition: transform .2s ease; }
.lang-switcher[open] .lang-caret { transform: rotate(180deg); }
.lang-switcher .flag {
  width: 22px; height: 15px; border-radius: 3px; overflow: hidden;
  display: inline-block; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.lang-switcher .flag svg { display: block; width: 100%; height: 100%; }
.lang-switcher .lang-list {
  position: absolute; top: calc(100% + 0.5rem); right: 0; z-index: 200;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 0.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.12); padding: 0.35rem; min-width: 180px;
}
.lang-switcher .lang-option {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  border-radius: 0.4rem; cursor: pointer; text-decoration: none;
  padding: 0.5rem 0.6rem; text-align: left;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--text-dark);
}
.lang-switcher .lang-option:hover { background: rgba(220,179,90,.12); }
.lang-switcher .lang-option.is-active { color: var(--secondary); font-weight: 700; }

@media (max-width: 900px) {
  .navbar-menu.is-open { max-height: 80vh; overflow-y: auto; }
  .lang-switcher { width: 100%; padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--border-soft); }
  .lang-switcher > summary { justify-content: center; }
  .lang-switcher .lang-list {
    position: static; width: 100%; min-width: 0;
    border: none; box-shadow: none; padding: 0; margin-top: 0.6rem;
  }
}

/* ---------- Footer ---------- */
.site-footer { background: #121212; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { display: block; height: 60px; width: auto; opacity: .95; margin-bottom: 1.5rem; }
.footer-phone { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.75rem; }
.footer-phone svg { flex-shrink: 0; color: var(--secondary); }
.footer-phone:hover { color: var(--secondary); }
.footer-socials { display: flex; gap: 0.85rem; }
.footer-social-btn { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--secondary); color: #fff; display: flex; align-items: center; justify-content: center; }
.footer-social-btn:hover { opacity: .85; }
/* <h5> não entra no reset global (h1–h4), então zera a margem-topo padrão do
   navegador para o título alinhar pelo topo com a logo do rodapé. */
.footer-heading { font-size: 0.85rem; font-weight: 700; color: #fff; margin: 0 0 1.75rem; text-transform: uppercase; }
.footer-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-list a { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.footer-list a:hover { color: var(--secondary); }
.footer-contacts { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,.85); font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-contact-item a svg { flex-shrink: 0; color: var(--secondary); }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-addresses { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-address-item { display: flex; align-items: center; gap: 0.6rem; }
.footer-address-icon { flex-shrink: 0; color: var(--secondary); }
.footer-address { color: rgba(255,255,255,.6); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.footer-bottom { padding-top: 1.75rem; padding-bottom: 1.75rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; text-align: left; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 11px; font-weight: 500; margin: 0; }
.footer-credit { color: rgba(255,255,255,.4); font-size: 11px; font-weight: 500; text-decoration: none; transition: color 0.2s ease; }
.footer-credit:hover { color: var(--secondary); }

/* ---------- 404 / erro ---------- */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; text-align: center; }
.error-page .code { font-family: var(--font-serif); font-size: 5rem; font-weight: 800; color: var(--primary); }
.error-page h2 { font-size: 1.3rem; text-transform: uppercase; color: var(--primary); margin: 1.5rem 0 1rem; }
.error-page p { color: #6b7280; font-size: 0.9rem; margin-bottom: 2.5rem; }
