/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy-deep:  #071B35;   /* header (paleta nova) */
  --navy:       #0c1f3a;
  --navy-mid:   #112647;
  --navy-card:  #152e55;
  --navy-line:  #1e3f6e;
  --navy-bar:   #102542;   /* barra de categorias (mega-menu) */
  --muted:      #5b7ea8;
  --silver:     #9ab8d4;
  --light:      #cfe0ef;
  --white:      #FFFFFF;
  --orange:     #F28C00;   /* acao/botoes (paleta nova) */
  --orange2:    #D97706;   /* hover de botoes */
  --orange-glow: rgba(242,140,0,.28);
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
  --r: 6px;
  --ease: .22s cubic-bezier(.4,0,.2,1);
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar { background: var(--navy-deep); width: 100%; border-bottom: 1px solid var(--navy-line); }
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: .3rem 5vw;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1.8rem; flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-b); font-size: .85rem; font-weight: 400;
  letter-spacing: .02em; text-transform: none;
  color: #fff; text-decoration: none;
  transition: opacity var(--ease);
}
.topbar-item:hover { opacity: .8; }
.topbar-item svg   { flex-shrink: 0; }
.topbar-address    { cursor: default; }
@media (max-width: 640px) {
  .topbar-address { display: none; }
  .topbar-inner   { justify-content: center; gap: 1.2rem; }
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--navy); color: var(--light); font-family: var(--font-b); line-height: 1.65; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }

/* ── HEADER ──────────────────────────────────────────────── */
header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  /* Fundo de ponta a ponta, mas conteudo alinhado a faixa de 1200px (igual ao
     .container do resto da pagina). Em telas estreitas cai pra 5vw de respiro. */
  padding-inline: max(5vw, (100% - 1200px) / 2); padding-block: 0; height: 72px;
  background: rgba(7,27,53,.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--navy-line);
  transition: border-color var(--ease), background var(--ease);
}
header.scrolled { background: rgba(7,27,53,.99); }
.logo { flex-shrink: 0; }
.logo img { height: 64px; width: auto; }

/* Busca dentro do header (estilo marketplace): caixa branca no meio que cresce
   e quebra o bloco azul do topo. */
.header-busca {
  flex: 1; max-width: 560px; margin: 0 2rem;
  display: flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: .55rem .9rem;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.header-busca:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,140,0,.18); }
.header-busca svg { color: #98a2b3; flex-shrink: 0; }
.header-busca input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-b); font-size: .95rem; color: #1d2939;
}
.header-busca input::placeholder { color: #98a2b3; }

nav { display: flex; align-items: center; gap: 2.5rem; }
nav a {
  font-family: var(--font-d); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); transition: color var(--ease);
}
nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: .45rem 1.2rem; border-radius: var(--r);
  font-weight: 700 !important; transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--orange2) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--light); border-radius: 2px; transition: var(--ease); }

/* ── HERO ────────────────────────────────────────────────── */
#home {
  min-height: calc(100svh - 72px); display: grid; place-items: center;
  padding: 80px 5vw 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(7,22,40,.92) 0%, rgba(12,31,58,.85) 60%, rgba(17,38,71,.88) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://oakparafusos.com.br/imagem/herobackground.webp') center/cover no-repeat;
  opacity: .12;
  z-index: -1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,130,15,.15); border: 1px solid rgba(245,130,15,.4);
  border-radius: 99px; padding: .3rem 1rem;
  font-family: var(--font-d); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.8rem; animation: fadeUp .6s ease both;
}

h1 {
  font-family: var(--font-d); font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900; line-height: .95; text-transform: uppercase; color: var(--white);
  animation: fadeUp .6s .1s ease both;
}
h1 em { font-style: normal; color: var(--orange); font-family: 'Bebas Neue', var(--font-d); }

.hero-sub {
  margin: 1.6rem auto 0; max-width: 540px;
  font-size: 1.1rem; color: var(--silver);
  animation: fadeUp .6s .2s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2.4rem; animation: fadeUp .6s .3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: var(--r);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 30px var(--orange-glow); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: transparent; color: var(--light);
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 2rem; border: 1px solid var(--navy-line); border-radius: var(--r);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-secondary:hover { border-color: var(--silver); color: var(--white); transform: translateY(-2px); }

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem;
  margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--navy-line);
  animation: fadeUp .6s .45s ease both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-d); font-size: 2.4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat small  { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* ── SUPPLIERS ───────────────────────────────────────────── */
.suppliers-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 1.6rem 0; overflow: hidden;
}
.suppliers-label {
  text-align: center; font-family: var(--font-d); font-size: .75rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem;
}
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 22s linear infinite; }
/* logos em branco (fundo transparente) */
.marquee-track img { height: 32px; width: auto; filter: brightness(0) invert(1) opacity(.45); transition: filter var(--ease); }
.marquee-track img:hover { filter: brightness(0) invert(1) opacity(1); }
/* logos coloridos: Vonder e Irwin têm fundo escuro próprio — não inverter */
.marquee-track img.logo-color { filter: opacity(.55) saturate(.5); }
.marquee-track img.logo-color:hover { filter: opacity(1) saturate(1); }

/* ── SECTIONS SHARED ─────────────────────────────────────── */
section { padding: 5rem 5vw; }
.section-label { font-family: var(--font-d); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: .8rem; }
h2 { font-family: var(--font-d); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.05; text-transform: uppercase; color: var(--white); }
h2 em { font-style: normal; color: var(--orange); }

/* Scroll reveal */
.reveal { transition: opacity .65s ease, transform .65s ease; }
.reveal.hidden { opacity: 0; transform: translateY(28px); }

/* ── ABOUT ───────────────────────────────────────────────── */
#sobre { background: var(--navy-deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); filter: brightness(.85) saturate(.85); }
.about-img::before {
  content: ''; position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid var(--orange); border-radius: var(--r); z-index: -1; opacity: .35;
}
.about-founded {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-d); text-align: center;
  padding: 1.2rem 1.6rem; border-radius: var(--r); line-height: 1.1;
}
.about-founded strong { display: block; font-size: 2.2rem; font-weight: 900; }
.about-founded span   { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.about-text { display: flex; flex-direction: column; gap: 1.4rem; }
.about-text p        { color: var(--silver); font-size: 1.05rem; }
.about-text p strong { color: var(--white); }

.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .4rem; }
.perk  { display: flex; align-items: flex-start; gap: .7rem; background: var(--navy-card); border: 1px solid var(--navy-line); border-radius: var(--r); padding: 1rem; }
.perk-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.perk h4   { font-family: var(--font-d); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); }
.perk p    { font-size: .85rem; color: var(--muted); margin-top: .15rem; }

/* ── PRODUCTS ────────────────────────────────────────────── */
#produtos { background: var(--navy); }
.products-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin: 0 auto 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.product-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.product-card-img { aspect-ratio: 16/10; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) saturate(.75); transition: filter var(--ease), transform .5s ease; }
.product-card:hover .product-card-img img { filter: brightness(.95) saturate(1); transform: scale(1.04); }
.product-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.product-card-body h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: .5rem; }
.product-desc { font-size: .88rem; color: var(--silver); line-height: 1.55; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s ease; opacity: 0; }
.product-card.expanded .product-desc { max-height: 300px; opacity: 1; }
.product-expand { display: flex; align-items: center; gap: .4rem; font-family: var(--font-d); font-size: .82rem; letter-spacing: .07em; text-transform: uppercase; color: var(--orange); margin-top: .8rem; transition: gap var(--ease); }
.product-card:hover .product-expand { gap: .7rem; }
.expand-arrow { display: inline-block; transition: transform .3s ease; }
.product-card.expanded .expand-arrow { transform: rotate(180deg); }

/* ── VITRINE LOJA ONLINE ─────────────────────────────────── */
#vitrine-loja {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 5rem 5vw;
}
.vitrine-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin: 0 auto 3rem; gap: 2rem; flex-wrap: wrap;
}
.vitrine-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; max-width: 1200px; margin: 0 auto;
}
.vitrine-card {
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.vitrine-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.vitrine-card-img {
  aspect-ratio: 1/1; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.vitrine-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.8rem; }
.vitrine-card-img .sem-foto {
  color: #999; font-size: .8rem; font-family: var(--font-d); letter-spacing: .08em;
}
.vitrine-card-body { padding: .9rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.vitrine-card-marca {
  font-family: var(--font-d); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .25rem;
}
.vitrine-card-titulo {
  font-size: .9rem; font-weight: 600; color: var(--white); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.4em; margin-bottom: .5rem;
}
.vitrine-card-preco {
  margin-top: auto; font-family: var(--font-d); font-size: 1.05rem;
  font-weight: 800; color: var(--white);
}
.vitrine-card-preco small { font-size: .68rem; font-weight: 500; color: var(--silver); letter-spacing: .03em; }
.vitrine-loading, .vitrine-erro {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  color: var(--silver); font-size: .9rem;
}
.vitrine-erro a { color: var(--orange); text-decoration: underline; }

@media (max-width: 720px) {
  .vitrine-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .vitrine-card-titulo { font-size: .82rem; }
  .vitrine-card-preco { font-size: .95rem; }
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contato { background: var(--navy-deep); position: relative; overflow: hidden; }
#contato::before {
  content: ''; position: absolute; top: -40%; right: -20%; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(245,130,15,.07) 0%, transparent 65%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
/* A coluna do mapa: o mapa alinha com o topo dos cards de contato.
   A coluna esquerda tem: título (~120px) + parágrafo + botão WA + gap.
   Usamos padding-top para empurrar o mapa ao nível certo. */
.contact-map-col {
  display: flex; flex-direction: column;
  /* título h2 + section-label + parágrafo + botão whatsapp + gaps = ~230px */
  padding-top: 230px;
}
@media (max-width: 900px) {
  .contact-map-col { padding-top: 0; }
}
.contact-info > p { color: var(--silver); font-size: 1.05rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-phones  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-phones { grid-template-columns: 1fr; } }
.contact-method {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 1.1rem 1.4rem; transition: border-color var(--ease);
}
a.contact-method:hover { border-color: var(--orange); }
.contact-method-icon { font-size: 1.4rem; flex-shrink: 0; width: 2.2rem; text-align: center; }
.contact-method-text strong { display: block; font-family: var(--font-d); font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.contact-method-text span   { font-size: .9rem; color: var(--silver); }
.whatsapp-cta {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  background: #25d366; color: var(--white); font-family: var(--font-d);
  font-size: 1.25rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 1.1rem 2.2rem; border-radius: var(--r);
  transition: filter var(--ease), transform var(--ease), box-shadow var(--ease);
}
.whatsapp-cta:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.3); }
.contact-map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--navy-line); }
.contact-map-wrap iframe { width: 100%; height: 320px; border: none; filter: brightness(.8) contrast(1.0); display: block; }
.contact-address { background: var(--navy-card); border: 1px solid var(--navy-line); border-radius: var(--r); padding: 1.2rem 1.4rem; margin-top: 1.2rem; font-size: .95rem; color: var(--silver); }
.contact-address strong { color: var(--white); }
.contact-address a  { color: var(--orange); display: inline-block; margin-top: .5rem; }

/* ── FOOTER SOCIAL ICONS ─────────────────────────────────── */
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-line); color: var(--silver);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer-social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ── CONTACT HOURS BOX ───────────────────────────────────── */
.contact-hours {
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 1.1rem 1.4rem;
  font-size: .9rem;
}
.hours-title {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-d); font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem 0; border-bottom: 1px solid var(--navy-line);
}
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: var(--silver); }
.hours-time { font-family: var(--font-d); font-weight: 700; font-size: 1rem; color: var(--white); letter-spacing: .03em; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy-deep); border-top: 1px solid var(--navy-line); padding: 3rem 5vw; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p   { font-size: .9rem; color: var(--muted); max-width: 320px; }
.footer-col h4 { font-family: var(--font-d); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .9rem; color: var(--muted); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--navy-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--muted);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  background: var(--orange); color: var(--white);
  border: none; cursor: pointer; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px) scale(.85);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  pointer-events: none;
}
.back-to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--orange2); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 90;
  background: #25d366; color: var(--white); border-radius: 99px;
  padding: .65rem 1.3rem .65rem .85rem;
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); }               to { transform: translateX(-50%); } }

/* ── ABOUT SLIDESHOW ─────────────────────────────────────── */
.about-slideshow {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r); overflow: hidden;
}
.about-slideshow .slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r);
  filter: brightness(.85) saturate(.85);
  opacity: 0; transition: opacity .7s ease;
}
.about-slideshow .slide.active { opacity: 1; }
.slide-dots {
  position: absolute; bottom: .85rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 2;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  padding: 0;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* ── CNPJ SECTION ────────────────────────────────────────── */
/* ── DEPOIMENTOS ──────────────────────────────────────────── */
.depoimentos-section { padding: 4rem 5vw; background: var(--navy); position: relative; }
.depoimentos-inner { max-width: 1200px; margin: 0 auto; }
.depoimentos-header { text-align: center; margin-bottom: 3.5rem; }
.google-rating { display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; margin-top: 1.5rem; padding: 1rem 2rem; background: var(--navy-card); border: 1px solid var(--navy-line); border-radius: var(--r); }
.google-stars { display: flex; gap: .2rem; color: #fbbc04; font-size: 1.6rem; letter-spacing: .05em; }
.google-rating-text { color: var(--silver); font-size: .95rem; }
.google-rating-text strong { color: var(--white); font-weight: 700; }

.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-bottom: 3rem; }
.depoimento-card {
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color var(--ease), transform var(--ease);
}
.depoimento-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.depoimento-stars { color: #fbbc04; font-size: 1.05rem; letter-spacing: .12em; }
.depoimento-texto {
  color: var(--light); font-size: .98rem; line-height: 1.6;
  flex: 1; font-style: italic;
}
.depoimento-autor { display: flex; align-items: center; gap: .8rem; padding-top: .8rem; border-top: 1px solid var(--navy-line); }
.depoimento-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 1rem;
}
.depoimento-autor strong { display: block; color: var(--white); font-size: .9rem; }
.depoimento-autor span   { font-size: .78rem; color: var(--muted); }

.depoimentos-cta { text-align: center; }
.btn-google {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); color: #1a1a1a;
  padding: .85rem 1.6rem; border-radius: var(--r);
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

.cnpj-section {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.cnpj-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,130,15,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cnpj-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.cnpj-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,130,15,.15); border: 1px solid rgba(245,130,15,.4);
  border-radius: 99px; padding: .3rem 1.1rem;
  font-family: var(--font-d); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.2rem;
}
.cnpj-sub {
  font-size: 1.1rem; color: var(--silver);
  max-width: 620px; margin: 1.2rem auto 2.5rem;
}
.cnpj-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-bottom: 1rem;
}
.cnpj-benefit {
  background: var(--navy-card); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 1.4rem 1rem;
  transition: border-color var(--ease), transform var(--ease);
}
.cnpj-benefit:hover { border-color: var(--orange); transform: translateY(-3px); }
.cnpj-icon { font-size: 1.8rem; display: block; margin-bottom: .7rem; }
.cnpj-benefit h4 {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--white); margin-bottom: .5rem;
}
.cnpj-benefit p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background-color: #071628 !important;
    padding: 92px 5vw 2rem;
    margin: 0;
    border: none;
    z-index: 99;
    overflow-y: auto;
    box-sizing: border-box;
  }
  nav.active { display: flex; }
  nav a {
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--navy-line);
    width: 100%;
    color: var(--white);
  }
  .nav-cta { border: none !important; padding: 1.2rem 0 !important; border-radius: 0 !important; width: 100%; text-align: left; background: transparent !important; color: var(--orange) !important; }
  .menu-toggle { display: flex; position: relative; z-index: 101; }

  /* Favoritos no menu hamburguer: vira item normal (icone + texto), igual aos
     outros (Minha conta, Carrinho). No desktop continua so o icone na barra. */
  .nav-favoritos {
    width: 100% !important; height: auto !important;
    justify-content: flex-start !important;
    gap: .6rem; padding: 1rem 0; font-size: 1.5rem;
    border-bottom: 1px solid var(--navy-line);
    color: var(--white);
  }
  .nav-favoritos svg { width: 22px; height: 22px; flex-shrink: 0; }
  .nav-favoritos .fav-texto {
    display: inline; font-family: var(--font-d);
    letter-spacing: .04em; text-transform: uppercase;
  }
  /* badge volta pro fluxo (ao lado do texto), nao no canto do icone */
  .nav-favoritos .fav-badge { position: static; margin-left: .2rem; }

  /* Header vira 2 linhas: (logo + hamburguer) em cima, busca ocupando a largura
     toda embaixo. Evita apertar logo+busca+menu numa linha so.
     padding-inline explicito sobrepoe o max(5vw,...) do desktop (senao em tela
     <1200px o (100%-1200)/2 vira negativo e o conteudo vaza pras bordas). */
  header {
    flex-wrap: wrap; height: auto; row-gap: .55rem;
    padding: .55rem 4vw .7rem !important;   /* folga extra embaixo (entre busca e mega-menu) */
    box-sizing: border-box;
    position: relative;                /* NAO sticky no mobile: sticky+flex-wrap fazia a
                                          2a linha (busca) ser coberta pelo mega-menu */
  }
  .logo { order: 1; }
  #menu-toggle { order: 2; }          /* logo + hamburguer na 1a linha */
  .header-busca {
    order: 3; flex: 1 0 100%; width: 100%; max-width: none; margin: 0;
    box-sizing: border-box; min-width: 0;
    padding: .5rem .8rem;              /* um pouco menor/mais compacta no mobile */
  }
  /* #main-nav (menu Home/Sobre/Loja) e o menu hamburguer fullscreen — fica
     escondido ate abrir (.active). Explicito por ID pra nao depender so da
     regra generica `nav` (que o cache pode estar mascarando). */
  #main-nav:not(.active) { display: none !important; }

  /* Topbar: quebra em linha e centraliza */
  .topbar-inner { justify-content: center; gap: 1rem; padding: .6rem 5vw; }
  .topbar-item { font-size: .75rem; }

  /* Hero: h1 menor, padding lateral menor */
  #home { padding: 60px 5vw; min-height: auto; }
  h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  h1 em { font-size: 1.1em; }
  .hero-sub { font-size: 1rem; padding: 0 .5rem; }
  .hero-stats { gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
  .hero-stat strong { font-size: 2rem; }

  /* Seções: menos padding vertical */
  section { padding: 3rem 5vw; }

  /* Sobre */
  .about-grid  { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-founded { bottom: 1rem; right: 1rem; padding: 1rem 1.2rem; }
  .about-founded strong { font-size: 1.8rem; }

  /* Produtos */
  .products-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }

  /* CNPJ */
  .cnpj-benefits { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cnpj-benefit { padding: 1.2rem .9rem; }
  .cnpj-sub { font-size: 1rem; }

  /* Contato */
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map-col { padding-top: 0 !important; }
  .contact-map-wrap iframe { height: 260px; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* Botões flutuantes: menores para não atrapalhar */
  .whatsapp-float { padding: .55rem 1rem .55rem .7rem; font-size: .85rem; bottom: 1rem; left: 1rem; }
  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

@media (max-width: 560px) {
  .hero-stats   { gap: 1.2rem; }
  .hero-stat strong { font-size: 1.7rem; }
  .hero-stat small  { font-size: .7rem; }
  .perks        { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; padding: 0 1rem; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .cnpj-benefits { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  /* Topbar em telas pequenas: ainda mais compacto */
  .topbar-inner { flex-direction: column; gap: .5rem; padding: .65rem 5vw; }
  .topbar-item { font-size: .72rem; }

  /* Cards de contato: mais compactos */
  .contact-method { padding: .9rem 1.1rem; gap: .8rem; }
  .contact-method-icon { font-size: 1.2rem; width: 1.8rem; }
  .whatsapp-cta { font-size: 1.05rem; padding: 1rem 1.4rem; }

  /* Título h2 menor */
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* About image: sem borda externa saindo */
  .about-img::before { inset: -8px -8px 8px 8px; }

  /* Suppliers logos menores */
  .marquee-track img { height: 26px; }
  .marquee-track { gap: 2.5rem; }
}
