/* ============================================================
   VOX CITY — Site Institucional
   Cores oficiais: verde #9AC31C · navy #00365F · deep #001E35
   ============================================================ */

:root {
  --verde: #9AC31C;
  --verde-claro: #B5DC3B;
  --navy: #00365F;
  --deep: #001E35;
  --deep-2: #001526;
  --bg-light: #FFFFFF;
  --bg-gray: #F3F6FA;
  --text: #24313F;
  --text-soft: #5A6B7C;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(0, 30, 53, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 30, 53, 0.16);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--navy); margin-bottom: .6em; }

.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--gray { background: var(--bg-gray); }

.section__sub {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-bottom: 48px;
}
.section__sub--light { color: rgba(255,255,255,.75); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--verde);
  vertical-align: middle;
  margin-right: 10px;
}
.eyebrow--light { color: var(--verde-claro); }

.grad {
  background: linear-gradient(90deg, var(--verde) 0%, var(--verde-claro) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-dark {
  background: linear-gradient(90deg, var(--navy) 0%, #0A6FA8 60%, var(--verde) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.02rem; }

.btn--green { background: var(--verde); color: var(--deep); }
.btn--green:hover { box-shadow: 0 10px 30px rgba(154, 195, 28, .45); background: var(--verde-claro); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { box-shadow: 0 10px 30px rgba(0, 54, 95, .35); }

.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--verde); color: var(--verde-claro); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: var(--verde); color: var(--verde-claro); }

.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav--scrolled {
  background: rgba(0, 21, 38, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.nav__inner { display: flex; align-items: center; gap: 32px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--verde);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--verde-claro); }
.nav__actions { display: flex; gap: 12px; }
.nav__actions--mobile { display: none; }
.nav__burger {
  display: none;
  background: none; border: 0;
  width: 40px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav__burger span {
  display: block; height: 2.5px; width: 26px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 70% 10%, var(--navy) 0%, var(--deep) 55%, var(--deep-2) 100%);
  overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
  pointer-events: none;
}
.hero__glow--1 {
  width: 520px; height: 520px;
  background: rgba(154, 195, 28, .22);
  bottom: -180px; right: -120px;
  animation: float 9s ease-in-out infinite;
}
.hero__glow--2 {
  width: 420px; height: 420px;
  background: rgba(10, 111, 168, .35);
  top: -120px; left: -100px;
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}
.hero__content { position: relative; z-index: 2; padding: 140px 0 90px; }
.badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--verde-claro);
  background: rgba(154, 195, 28, .1);
  border: 1px solid rgba(154, 195, 28, .35);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero__sub {
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero__sub strong { color: var(--verde-claro); font-weight: 600; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  background: var(--verde);
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ NÚMEROS ============ */
.stats {
  background: var(--deep-2);
  border-top: 1px solid rgba(154, 195, 28, .18);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--verde);
  line-height: 1.1;
}
.stat__label {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* ============ QUEM SOMOS ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.about__text p { color: var(--text-soft); margin-bottom: 18px; }
.about__text p strong { color: var(--navy); }
.about__values {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.about__values li {
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(154, 195, 28, .14);
  border: 1px solid rgba(154, 195, 28, .4);
  padding: 8px 16px;
  border-radius: 999px;
}
.about__photo { position: relative; }
.about__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about__photo::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px; height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--verde), transparent 70%);
  opacity: .55;
  z-index: -1;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 160px; height: 160px;
  border-radius: 24px;
  background: linear-gradient(315deg, var(--navy), transparent 70%);
  opacity: .35;
  z-index: -1;
}
.about__photo figcaption {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--text-soft);
  text-align: center;
}

.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv__card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--deep) 100%);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--verde);
  box-shadow: var(--shadow);
}
.mv__card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,195,28,.25), transparent 70%);
}
.mv__card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mv__card p { position: relative; z-index: 1; }

/* ============ SOLUÇÕES ============ */
.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 54, 95, .07);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(154, 195, 28, .5);
}
.pcard--featured {
  background: linear-gradient(150deg, #FFFFFF 55%, rgba(154, 195, 28, .10) 100%);
  border: 2px solid rgba(154, 195, 28, .45);
}
.pcard__tag {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--verde);
  padding: 6px 14px;
  border-radius: 999px;
}
.pcard__icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--deep));
  color: var(--verde);
  margin-bottom: 22px;
}
.pcard__icon svg { width: 32px; height: 32px; }
.pcard h3 { color: var(--navy); font-size: 1.55rem; margin-bottom: 4px; }
.pcard__kicker {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--verde);
  filter: brightness(.82);
  margin-bottom: 14px;
}
.pcard > p:not(.pcard__kicker) { color: var(--text-soft); margin-bottom: 18px; }
.pcard ul { list-style: none; margin-bottom: 26px; }
.pcard ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  color: var(--text);
  font-size: .95rem;
}
.pcard ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 16px; height: 16px;
  background: var(--verde);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
}
.pcard__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

/* ============ TECNOLOGIA ============ */
.tech {
  background: radial-gradient(110% 130% at 30% 0%, var(--navy) 0%, var(--deep) 60%, var(--deep-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tech h2 { color: var(--white); }
.tech__glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,195,28,.14), transparent 65%);
  top: -220px; right: -180px;
  pointer-events: none;
}
.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 195, 28, .55);
  background: rgba(154, 195, 28, .07);
}
.tcard__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(154, 195, 28, .14);
  color: var(--verde);
  margin-bottom: 18px;
}
.tcard__icon svg { width: 27px; height: 27px; }
.tcard h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 10px; }
.tcard p { color: rgba(255,255,255,.68); font-size: .93rem; }

/* ============ ABRANGÊNCIA ============ */
.reach {
  background: var(--deep-2);
  color: var(--white);
  overflow: hidden;
}
.reach h2 { color: var(--white); }
.reach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.reach__text p { color: rgba(255,255,255,.72); margin-bottom: 20px; }
.reach__text p strong { color: var(--verde-claro); }
.reach__list { list-style: none; }
.reach__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.82);
}
.reach__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 17px; height: 17px;
  background: var(--verde);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
}
.reach__map { position: relative; }
.reach__map svg { width: 100%; height: auto; display: block; }
.reach__map .dot { fill: rgba(255,255,255,.16); }
.reach__map .dot--on {
  fill: var(--verde);
  filter: drop-shadow(0 0 3px rgba(154, 195, 28, .8));
  animation: pulseDot 3.2s ease-in-out infinite;
}
.reach__map .dot--hq {
  fill: var(--verde-claro);
  filter: drop-shadow(0 0 6px var(--verde));
}
@keyframes pulseDot {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(100deg, var(--verde) 0%, #7FA716 100%);
  padding: clamp(56px, 7vw, 90px) 0;
}
.cta-banner__inner { text-align: center; }
.cta-banner h2 {
  color: var(--deep);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  max-width: 760px;
  margin-inline: auto;
}
.cta-banner p {
  color: rgba(0, 30, 53, .75);
  margin: 14px auto 32px;
  max-width: 560px;
  font-size: 1.05rem;
}

/* ============ CONTATO ============ */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 46px 0;
}
.ccard {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0, 54, 95, .1);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ccard:hover {
  transform: translateY(-6px);
  border-color: var(--verde);
  box-shadow: var(--shadow-lg);
}
.ccard__icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(154, 195, 28, .15);
  color: var(--navy);
}
.ccard__icon svg { width: 28px; height: 28px; }
.ccard h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.ccard p { color: var(--text-soft); font-size: .95rem; }

.contact__portals {
  text-align: center;
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 36px;
}
.contact__portals p {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.contact__portals div { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--deep-2); color: rgba(255,255,255,.7); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(50px, 6vw, 80px) 0 40px;
}
.footer__brand img { height: 44px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: .92rem; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.footer__social a:hover {
  background: var(--verde);
  color: var(--deep);
  transform: translateY(-3px);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 {
  color: var(--white);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .93rem;
  margin-bottom: 11px;
  transition: color .25s ease, padding-left .25s ease;
}
.footer__col a:hover { color: var(--verde-claro); padding-left: 5px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  font-size: .85rem;
  text-align: center;
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whats-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .3s ease;
}
.whats-float:hover { transform: scale(1.1); }
.whats-float svg { width: 32px; height: 32px; }

/* ============ ANIMAÇÕES DE SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow, .hero__scroll span, .dot--on { animation: none !important; }
}

/* ============ PÁGINAS DE PRODUTO (placeholder) ============ */
.soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 70% 10%, var(--navy) 0%, var(--deep) 55%, var(--deep-2) 100%);
  color: var(--white);
  text-align: center;
}
.soon__box { width: min(680px, 92%); margin-inline: auto; padding: 40px 0; }
.soon__box img { height: 52px; width: auto; margin: 0 auto 40px; }
.soon__box h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.soon__box .pcard__kicker { font-size: 1.05rem; margin-bottom: 20px; filter: none; }
.soon__box p { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.soon__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .nav__actions { display: none; }
}

@media (max-width: 860px) {
  .nav__burger { display: flex; margin-left: auto; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(320px, 82vw);
    background: var(--deep-2);
    flex-direction: column;
    padding: 100px 34px 40px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
    margin-left: 0;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; }
  .nav__actions--mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }
  .nav__burger { position: relative; z-index: 110; }

  .about__grid, .mv__grid, .products__grid, .reach__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .reach__map { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 520px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .pcard__ctas .btn { flex: 1; }
}

/* ============================================================
   AVISO DE COOKIES (global — todas as páginas)
   ============================================================ */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(0, 21, 38, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(154, 195, 28, .35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .4);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.cookie-bar--in { transform: translateY(0); }
.cookie-bar__inner {
  width: min(1180px, 92%);
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 26px;
}
.cookie-bar__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 5px;
}
.cookie-bar__text p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.55; margin: 0; }
.cookie-bar__link { color: var(--verde-claro); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 760px) {
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 0; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__actions .btn { flex: 1; }
}

/* ============================================================
   GERENCIADOR DE COOKIES (modal por categoria)
   ============================================================ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.cookie-modal--in { opacity: 1; }
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 12, 22, .72);
  backdrop-filter: blur(4px);
}
.cookie-modal__box {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #0A1B2B;
  border: 1px solid rgba(154, 195, 28, .3);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.cookie-modal--in .cookie-modal__box { transform: none; }
.cookie-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(120, 175, 215, .15);
}
.cookie-modal__head h3 { font-family: var(--font-head); color: var(--white); font-size: 1.15rem; }
.cookie-modal__x {
  background: none; border: 0;
  color: rgba(235, 244, 250, .6);
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  transition: color .2s ease;
}
.cookie-modal__x:hover { color: var(--white); }
.cookie-modal__body { padding: 8px 24px; overflow-y: auto; }
.ckcat { padding: 18px 0; border-bottom: 1px solid rgba(120, 175, 215, .12); }
.ckcat:last-child { border-bottom: 0; }
.ckcat__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.ckcat__title { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; }
.ckcat__title span { color: rgba(185, 208, 226, .55); font-weight: 400; }
.ckcat__req { font-size: .8rem; font-weight: 600; color: var(--verde); }
.ckcat__desc { color: rgba(185, 208, 226, .68); font-size: .88rem; line-height: 1.55; margin-bottom: 10px; }
.ckcat__list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.ckcat__list li {
  font-size: .76rem;
  color: rgba(235, 244, 250, .8);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(120, 175, 215, .15);
  border-radius: 999px;
  padding: 5px 12px;
}
/* toggle switch */
.cksw { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; cursor: pointer; }
.cksw input { position: absolute; opacity: 0; width: 0; height: 0; }
.cksw span {
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px;
  transition: background .25s ease;
}
.cksw span::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s ease;
}
.cksw input:checked + span { background: var(--verde); }
.cksw input:checked + span::before { transform: translateX(20px); }
.cookie-modal__foot {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 18px 24px;
  border-top: 1px solid rgba(120, 175, 215, .15);
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .cookie-modal__foot { flex-direction: column-reverse; }
  .cookie-modal__foot .btn { width: 100%; }
}
