/* ===== Fontes (só subset latin, cobre acentuação PT-BR) ===== */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format('woff2');
}

/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: #0b0b0c;
  color: #111113;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: #F36D13; color: #fff; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== Animações ===== */
@keyframes gnFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes gnReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gnPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}
@keyframes gnMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.gn-reveal { opacity: 0; }
.gn-reveal.in { animation: gnReveal .7s cubic-bezier(.16,1,.3,1) forwards; }

/* ===== Header / Nav ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding: 14px 0; }
.navbar {
  max-width: 1240px; margin: 0 auto; padding: 0 14px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: rgba(16,16,18,.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
@media (max-width: 640px) { .navbar { margin: 0 14px; } }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 11px; object-fit: cover; box-shadow: 0 4px 16px rgba(0,0,0,.5); }
.brand span { font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: 17px; letter-spacing: .02em; }
.brand .accent { color: #F36D13; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a, .nav-links button {
  color: #c7ccd3; font-size: 14px; font-weight: 600; padding: 9px 14px;
  border-radius: 10px; background: transparent; border: 0; cursor: pointer;
}
.nav-links a:hover, .nav-links button:hover { color: #F36D13; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-size: 20px; cursor: pointer; align-items: center; justify-content: center;
}

@media (max-width: 880px) {
  .nav-links {
    position: absolute; top: 74px; left: 14px; right: 14px;
    background: rgba(16,16,18,.97); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; flex-direction: column; align-items: stretch;
    padding: 10px; gap: 2px;
    display: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links button { padding: 13px 16px; font-size: 15px; text-align: left; width: 100%; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 130px 0 70px; overflow: hidden;
  background: radial-gradient(120% 90% at 78% 8%, #201a14 0%, #0b0b0c 52%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, #17171a 0 22px, #141416 22px 44px);
  opacity: .4;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #0b0b0c 26%, rgba(11,11,12,.35) 60%, rgba(11,11,12,.6) 100%);
}
.hero-inner { position: relative; z-index: 3; max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: 7px 14px 7px 8px; margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #F36D13; box-shadow: 0 0 0 4px rgba(243,109,19,.22); }
.hero-badge span:last-child { color: #c7ccd3; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; }
.hero h1 {
  font-family: 'Archivo'; font-weight: 900; color: #fff;
  font-size: clamp(36px, 6.6vw, 78px); line-height: .98; letter-spacing: -.02em;
}
.hero h1 .accent { color: #F36D13; }
.hero p {
  color: #a8adb5; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  margin-top: 24px; max-width: 560px; font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #062b14;
  font-family: 'Archivo'; font-weight: 800; font-size: 16px; padding: 17px 26px; border-radius: 14px;
  box-shadow: 0 14px 34px rgba(37,211,102,.36); transition: transform .2s;
}
.btn-wa:hover { transform: translateY(-3px); }
.btn-wa .ico { font-size: 19px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.06); color: #fff;
  font-weight: 700; font-size: 16px; padding: 17px 24px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14); transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.hero-mascot {
  position: absolute; top: 50%; right: 6%; transform: translateY(-50%); z-index: 2;
  width: min(34vw, 420px);
}
.hero-mascot img {
  width: 100%; height: auto; border-radius: 26px;
  box-shadow: 0 30px 80px rgba(243,109,19,.28), 0 10px 40px rgba(0,0,0,.6);
  animation: gnFloat 6s ease-in-out infinite;
}
.hero-mascot .chip {
  position: absolute; top: -6%; left: -4%;
  background: rgba(20,20,23,.7); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 11px 15px;
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
}
.hero-mascot .chip strong { display: block; font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: 20px; line-height: 1; }
.hero-mascot .chip span { color: #9aa0a8; font-size: 11px; font-weight: 600; }
.hero-mascot .tag {
  position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(243,109,19,.16); backdrop-filter: blur(14px);
  border: 1px solid rgba(243,109,19,.42); border-radius: 100px; padding: 7px 15px;
}
.hero-mascot .tag b { color: #F36D13; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; }
.hero-mascot .tag em { color: #e6d8cc; font-size: 11.5px; font-weight: 600; font-style: normal; }
@media (max-width: 1080px) { .hero-mascot { display: none; } }

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: #5a5f68; font-family: monospace; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; z-index: 3;
}

/* ===== Marquee ===== */
.marquee { background: #F36D13; overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.15); border-bottom: 1px solid rgba(0,0,0,.15); }
.marquee-track { display: flex; width: max-content; animation: gnMarquee 26s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 42px; padding-right: 42px; }
.marquee-group span.label { font-family: 'Archivo'; font-weight: 800; color: #111; font-size: 18px; letter-spacing: .02em; }
.marquee-group span.dot { color: #111; }

/* ===== Section headers ===== */
.eyebrow {
  font-family: monospace; color: #F36D13; font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
h2 { font-family: 'Archivo'; font-weight: 800; letter-spacing: -.02em; line-height: 1.06; font-size: clamp(28px, 4vw, 48px); }

/* ===== Sobre ===== */
.sobre { background: #F8F8F8; padding: 90px 0; }
.sobre .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 56px; align-items: center; }
.sobre h2 { color: #111; }
.sobre h2 .accent { color: #F36D13; }
.sobre p.lead { color: #4a4d52; font-size: 18px; line-height: 1.7; margin-top: 26px; max-width: 520px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.stat-card {
  flex: 1 1 0; min-width: 150px; background: #fff; border: 1px solid #EAEAEA; border-radius: 18px;
  padding: 22px 24px; box-shadow: 0 6px 28px rgba(17,17,17,.04);
}
.stat-card strong { display: block; font-family: 'Archivo'; font-weight: 800; font-size: 28px; color: #111; }
.stat-card span { color: #7a7d82; font-size: 13px; font-weight: 600; margin-top: 6px; display: block; }
.sobre-img { display: flex; align-items: center; justify-content: center; }
.sobre-img img { width: 68%; max-width: 340px; animation: gnFloat 5s ease-in-out infinite; }

/* ===== Serviços ===== */
.servicos { background: #0b0b0c; padding: 90px 0; }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 44px; }
.servicos h2, .produtos h2, .processo h2 { color: #fff; }
.section-head .sub { color: #8a8f98; max-width: 380px; font-size: 15.5px; line-height: 1.6; }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.service-card {
  background: linear-gradient(180deg,#161619 0%,#101012 100%); border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px; padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(243,109,19,.5); }
.service-card .ic {
  width: 50px; height: 50px; border-radius: 14px; background: rgba(243,109,19,.14);
  border: 1px solid rgba(243,109,19,.3); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-family: 'Archivo'; font-weight: 700; color: #fff; font-size: 21px; }
.service-card p { color: #9aa0a8; font-size: 15px; line-height: 1.6; margin-top: 12px; }

/* ===== Diferenciais ===== */
.diferenciais { background: #f6f5f3; padding: 90px 0; }
.diferenciais .section-head { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.diferenciais h2 { color: #111; }
.card-grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; }
.dif-card {
  background: #fff; border: 1px solid #e6e3df; border-radius: 20px; padding: 26px;
  display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 8px 24px rgba(0,0,0,.03);
  transition: transform .3s, box-shadow .3s;
}
.dif-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,.09); }
.dif-card .ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: #111; color: #F36D13;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.dif-card h3 { font-family: 'Archivo'; font-weight: 700; color: #111; font-size: 18px; }
.dif-card p { color: #63666b; font-size: 14px; line-height: 1.55; margin-top: 6px; }

/* ===== Economia circular ===== */
.economia { background: linear-gradient(180deg,#0B0B0B 0%,#111111 100%); padding: 90px 0; position: relative; overflow: hidden; }
.economia .grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 56px; align-items: center; }
.eco-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #0e2a19; border: 1px solid rgba(56,178,88,.4);
  border-radius: 100px; padding: 8px 16px; margin-bottom: 22px;
}
.eco-pill span:last-child { color: #7dd69a; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.economia h2 { color: #fff; }
.economia h2 .accent { color: #F36D13; }
.economia p.lead { color: #a8adb5; font-size: 17px; line-height: 1.7; margin-top: 22px; max-width: 520px; }
.eco-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 14px; margin-top: 34px; max-width: 540px; }
.eco-stat { background: #18181c; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; transition: transform .3s, border-color .3s; }
.eco-stat:hover { transform: translateY(-4px); }
.eco-stat .emoji { font-size: 19px; margin-bottom: 10px; }
.eco-stat .num { font-family: 'Archivo'; font-weight: 800; font-size: clamp(24px,3vw,32px); line-height: 1; }
.eco-stat .num.orange { color: #F36D13; }
.eco-stat .num.green { color: #38b258; }
.eco-stat .num.white { color: #fff; font-size: clamp(16px,1.7vw,19px); }
.eco-stat .cap { color: #8a8f98; font-size: 12px; font-weight: 600; margin-top: 6px; line-height: 1.35; }
.eco-photo { position: relative; width: 100%; height: clamp(280px,38vw,420px); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.eco-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.eco-timeline { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.eco-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 58px; }
.eco-step .circ { width: 42px; height: 42px; border-radius: 50%; background: #18181c; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.eco-step span.lbl { color: #c7ccd3; font-size: 11.5px; font-weight: 700; text-align: center; }
.eco-arrow { flex: 0 0 auto; align-self: center; margin-top: -12px; color: #F36D13; font-size: 14px; }

/* ===== Produtos ===== */
.produtos { background: #f6f5f3; padding: 90px 0; }
.produtos h2 { color: #111; max-width: 640px; }
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
.prod-card {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 14px 30px rgba(0,0,0,.14); border: 1px solid rgba(0,0,0,.06);
}
.prod-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-card:hover img { transform: scale(1.06); }
.prod-card .shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 42%,rgba(8,8,9,.9) 100%); }
.prod-card .label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; }
.prod-card .label b { font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: 16px; display: block; }
.prod-card .label span { color: #c7ccd3; font-size: 11.5px; }
.prod-card.featured { grid-column: span 2; border: 1.5px solid rgba(243,109,19,.7); box-shadow: 0 20px 44px rgba(243,109,19,.4); }
.prod-card.featured .shade { background: linear-gradient(160deg,rgba(243,109,19,.72) 0%,rgba(182,76,7,.5) 42%,rgba(8,8,9,.92) 100%); }
.prod-card.featured .badge {
  position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.4); backdrop-filter: blur(6px); color: #fff; font-weight: 800; font-size: 10px;
  letter-spacing: .06em; padding: 6px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,.18);
}
.prod-card.featured .label b { font-size: 20px; }

.prod-highlight {
  margin-top: 18px; background: #111113; border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); box-shadow: 0 30px 70px rgba(0,0,0,.14);
}
.prod-highlight .text { padding: clamp(28px,4vw,48px); display: flex; flex-direction: column; justify-content: center; }
.prod-highlight .badge {
  display: inline-flex; width: max-content; align-items: center; gap: 8px; background: rgba(243,109,19,.16);
  border: 1px solid rgba(243,109,19,.4); color: #F36D13; font-weight: 700; font-size: 11.5px; letter-spacing: .06em;
  padding: 6px 13px; border-radius: 100px; margin-bottom: 18px;
}
.prod-highlight h3 { font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: clamp(24px,3.4vw,36px); line-height: 1.08; }
.prod-highlight p { color: #a8adb5; font-size: 15.5px; line-height: 1.65; margin-top: 16px; max-width: 520px; }
.prod-highlight p strong { color: #fff; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.tag-row span { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #dfe3e8; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 100px; }
.prod-highlight .photo { position: relative; min-height: 260px; overflow: hidden; }
.prod-highlight .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== Processo ===== */
.processo { background: #0b0b0c; padding: 90px 0; }
.processo .section-head { text-align: center; justify-content: center; flex-direction: column; align-items: center; margin-bottom: 50px; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 20px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: #F36D13; color: #111;
  font-family: 'Archivo'; font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(243,109,19,.35);
}
.step-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(243,109,19,.5), transparent); }
.step-item h3 { font-family: 'Archivo'; font-weight: 700; color: #fff; font-size: 18px; }
.step-item p { color: #9aa0a8; font-size: 14px; line-height: 1.55; margin-top: 8px; }

/* ===== Quem somos ===== */
.quem-somos { background: #f6f5f3; padding: 90px 0; }
.quem-somos .inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.quem-somos p {
  font-family: 'Archivo'; font-weight: 600; color: #111; font-size: clamp(21px,3.2vw,34px);
  line-height: 1.32; letter-spacing: -.01em;
}
.quem-somos p .accent { color: #F36D13; }
.quem-somos p .muted { color: #8a8f98; }
.quem-somos .bar { width: 56px; height: 4px; background: #F36D13; border-radius: 2px; margin: 34px auto 0; }

/* ===== CTA final ===== */
.cta-final { background: #F36D13; padding: clamp(60px,10vw,110px) 24px; position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 30px, transparent 30px 60px);
}
.cta-final .inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.cta-final h2 { color: #111; font-size: clamp(30px,6vw,58px); }
.cta-final p { color: rgba(17,17,17,.75); font-size: clamp(15px,1.8vw,19px); font-weight: 600; margin-top: 18px; }
.cta-final .btn-wa { background: #111; color: #fff; margin-top: 30px; box-shadow: 0 18px 44px rgba(0,0,0,.25); }
.cta-final .btn-wa .ico { color: #25D366; font-size: 21px; }

/* ===== Rodapé ===== */
.site-footer { background: #0B0B0B; padding: 70px 24px 30px; color: #c7ccd3; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.footer-brand strong { font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: 17px; line-height: 1.15; display: block; }
.footer-brand small { font-size: 11.5px; color: #8a8f98; font-weight: 600; }
.site-footer > .wrap > p, .footer-col p { color: #8a8f98; font-size: 13.5px; line-height: 1.6; max-width: 300px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #c7ccd3; transition: background .2s, color .2s; }
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { color: #fff; background: rgba(255,255,255,.12); }
.social-row a.wa { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.3); color: #25D366; }
.social-row a.wa:hover { background: rgba(37,211,102,.22); color: #25D366; }
.footer-col h4 { font-family: 'Archivo'; font-weight: 700; color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .links a { color: #a8adb5; font-size: 14px; }
.footer-col .links a:hover { color: #F36D13; }
.footer-contact { display: flex; flex-direction: column; gap: 13px; font-size: 14px; }
.footer-contact .lbl { color: #6a6f78; font-size: 11.5px; margin-bottom: 2px; }
.footer-contact a, .footer-contact span.val { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: #F36D13; }
.footer-map img { display: block; width: 100%; height: 160px; object-fit: cover; border-radius: 16px; border: 1px solid #2A2A2A; transition: transform .4s; }
.footer-map:hover img { transform: scale(1.05); }
.footer-map .cap { text-align: center; color: #8a8f98; font-size: 11.5px; font-weight: 600; margin-top: 8px; }
.footer-map .cap .accent { color: #F36D13; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding-top: 24px; color: #6a6f78; font-size: 12.5px; text-align: center; }

/* ===== Modal B2B ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 120; background: rgba(6,6,7,.72);
  backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  max-width: 540px; width: 100%; background: linear-gradient(180deg,#161619,#101012);
  border: 1px solid rgba(243,109,19,.28); border-radius: 22px; padding: clamp(26px,4vw,40px);
  box-shadow: 0 40px 100px rgba(0,0,0,.7); max-height: 90vh; overflow-y: auto;
}
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.modal-head .badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(243,109,19,.14);
  border: 1px solid rgba(243,109,19,.4); color: #F36D13; font-weight: 800; font-size: 11px;
  letter-spacing: .05em; padding: 7px 12px; border-radius: 100px;
}
.modal-close { width: 36px; height: 36px; flex-shrink: 0; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #c7ccd3; font-size: 17px; cursor: pointer; }
.modal-box h3 { font-family: 'Archivo'; font-weight: 800; color: #fff; font-size: clamp(22px,3.4vw,28px); line-height: 1.1; }
.modal-box h3 .accent { color: #F36D13; }
.modal-box > p { color: #b3b8bf; font-size: 15px; line-height: 1.6; margin-top: 14px; }
.modal-box > p strong { color: #fff; }
.modal-box > p em { color: #F36D13; font-style: normal; }
.modal-rows { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.modal-row { display: flex; gap: 10px; align-items: flex-start; border-radius: 13px; padding: 12px 14px; }
.modal-row.yes { background: rgba(56,178,88,.08); border: 1px solid rgba(56,178,88,.22); }
.modal-row.no { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.modal-row .mark { font-size: 16px; line-height: 1.3; }
.modal-row.yes .mark { color: #38b258; }
.modal-row.no .mark { color: #e05a4d; }
.modal-row span.txt { color: #cdd2d8; font-size: 13.5px; line-height: 1.5; }
.modal-row span.txt strong { color: #fff; }
.modal-box .btn-wa { width: 100%; justify-content: center; margin-top: 22px; padding: 15px; font-size: 15px; }

/* ===== Botão flutuante WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff;
  animation: gnPulse 2.6s ease-in-out infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 560px) {
  .sobre, .servicos, .diferenciais, .economia, .produtos, .processo, .quem-somos { padding: 60px 0; }
  .cta-final { padding: 56px 20px; }
  .site-footer { padding: 56px 20px 24px; }
  .prod-card.featured { grid-column: span 2; aspect-ratio: 4/3; }
}
