/* ==========================================================================
   EXTINTORES CONDOR — Design System
   ========================================================================== */

:root {
  /* Cores */
  --green: #008744;
  --green-light: #00a859;
  --green-dark: #006b36;
  --navy: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --red: #dc2626;
  --red-light: #ef4444;
  --amber: #f59e0b;
  --white: #ffffff;
  --surface: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;

  /* Tipografia */
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Métricas */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --topbar-h: 40px;
  --header-h: 84px;
  --header-h-scrolled: 68px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --slide-dur: 6500ms;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Reserva o espaço da barra de rolagem sempre (mesmo quando o SO usa
   scrollbar "sobreposta"/automática), pra ela nunca aparecer/sumir e
   fazer o conteúdo colado na borda (barra superior) tremer. */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); scrollbar-gutter: stable; }
body {
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }
::selection { background: var(--green); color: #fff; }

.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }

/* ---------- Barra de progresso ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1002;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 60%, var(--red-light) 100%);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 13px;
  min-height: var(--topbar-h);
  display: flex; align-items: center;
  position: relative; z-index: 60;
}
/* A barra é uma faixa sólida e fina: em telas bem largas, limitar o conteúdo
   a 1200px (como o resto do site) deixa um vão vazio enorme nas pontas, que
   parece quebrado. Uma barra de topo deve acompanhar a largura real da tela. */
.topbar .container { width: calc(100% - 48px); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 6px; flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item {
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: color 0.25s ease;
}
.topbar-item svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--green-light); }
.topbar-item:hover { color: #fff; }
.topbar-whats svg { color: #25d366; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height 0.35s var(--ease-out);
}
.header.is-scrolled .header-inner { height: var(--header-h-scrolled); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  height: 46px; width: auto;
  mix-blend-mode: multiply; /* remove o fundo branco do JPG sobre o header claro */
  transition: height 0.35s var(--ease-out);
}
.header.is-scrolled .brand img { height: 40px; }

/* "Desde 1992" — texto (não imagem) para nunca precisar atualizar a arte */
.brand-since, .footer-logo .brand-since {
  display: flex; flex-direction: column; line-height: 1;
  padding-left: 14px;
  border-left: 1px solid rgba(15, 23, 42, 0.15);
  font-family: var(--font-head);
}
.brand-since b {
  display: block; font-weight: 800;
  background: linear-gradient(160deg, #f3d38a 0%, #c8933c 55%, #a5711f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand-since b:first-child { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-since b:last-child { font-size: 19px; margin-top: 1px; }
.footer-logo .brand-since { border-left-color: rgba(15, 23, 42, 0.12); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 13px;
  font-size: 14.5px; font-weight: 500; color: var(--navy-700);
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--navy); background: rgba(0, 135, 68, 0.06); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--green-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border-radius: 12px;
  background: var(--slate-100);
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--navy);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  line-height: 1; white-space: nowrap;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
/* Varredura de brilho ao passar o mouse */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -140%;
  width: 55%; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
}
.btn:hover::after { animation: btnSheen 0.85s var(--ease-out); }
@keyframes btnSheen { from { left: -140%; } to { left: 170%; } }
.btn > * { position: relative; z-index: 1; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; transition: transform 0.3s var(--ease-out); }
.btn:active { transform: scale(0.96); }
.btn:hover svg:last-child { transform: translateX(4px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 135, 68, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(0, 135, 68, 0.45); transform: translateY(-2px); }

.btn-danger {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}
.btn-danger:hover { box-shadow: 0 12px 34px rgba(220, 38, 38, 0.5); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--slate-200);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }

.btn-light {
  background: #fff; color: var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: max(620px, calc(100svh - var(--topbar-h) - var(--header-h)));
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}
.hero-embers {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none; opacity: 0.7;
}
.hero-slider, .slide { position: absolute; inset: 0; }
/* Crossfade com leve escala: o slide que sai cresce e esmaece (câmera "passa"
   por ele), o que entra começa um pouco ampliado e assenta no lugar — dá
   sensação de profundidade em vez de um dissolve plano. */
.slide {
  opacity: 0; visibility: hidden;
  transform: scale(1.035);
  transition: opacity 1.4s var(--ease-out), transform 1.5s var(--ease-out), visibility 0s linear 1.4s;
  will-change: opacity, transform;
}
.slide.is-active {
  opacity: 1; visibility: visible; transform: scale(1);
  transition: opacity 1.4s var(--ease-out), transform 1.5s var(--ease-out);
  z-index: 2;
}

.slide-bg { position: absolute; inset: 0; overflow: hidden; }
.slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.16);
  transition: transform 9s ease-out;
  will-change: transform;
}
/* Ken Burns: a imagem faz um leve zoom-out contínuo enquanto o slide está ativo */
.slide.is-active .slide-bg img { transform: scale(1); }
.slide-bg-light { background: #fff; }
.slide-bg-light img { object-position: right center; }

.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(75deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.78) 38%, rgba(15, 23, 42, 0.25) 75%, rgba(15, 23, 42, 0.35) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.55) 0%, transparent 30%);
}
.slide-overlay-green {
  background:
    linear-gradient(75deg, rgba(6, 38, 24, 0.95) 0%, rgba(15, 23, 42, 0.82) 40%, rgba(15, 23, 42, 0.3) 78%, rgba(15, 23, 42, 0.4) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.55) 0%, transparent 30%);
}
.slide-overlay-light {
  background:
    linear-gradient(80deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.2) 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(248, 250, 252, 0.8) 0%, transparent 26%);
}

.slide-content {
  position: relative; z-index: 4;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-bottom: 56px;
  max-width: none;
}
.slide-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #86efac;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(18px);
}
.slide-kicker-dark { color: var(--green-dark); }
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-light);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25);
  animation: kickerPulse 2s infinite;
}
@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.08); }
}

.slide-title {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.slide-title em {
  font-style: normal;
  background: linear-gradient(100deg, #4ade80, var(--green-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.slide-title-dark { color: var(--navy); }
.slide-title-dark em {
  background: linear-gradient(100deg, var(--green), var(--green-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* padding-bottom compensa a caixa apertada (overflow:hidden da animação de
   entrada) para não cortar a "perna" de letras como g/p/j — a margin
   negativa cancela o espaço extra pra não afastar a linha seguinte */
.h-line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.h-line > span {
  display: block;
  transform: translateY(112%);
}

.slide-text {
  max-width: 720px;
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 26px;
  opacity: 0; transform: translateY(18px);
}
.slide-text-dark { color: var(--slate-600); }

.slide-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
}

/* Entrada dos elementos do slide ativo */
.slide.is-active .h-line > span {
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.slide.is-active .h-line:nth-child(1) > span { animation-delay: 0.15s; }
.slide.is-active .h-line:nth-child(2) > span { animation-delay: 0.27s; }
.slide.is-active .h-line:nth-child(3) > span { animation-delay: 0.39s; }
.slide.is-active .h-line:nth-child(4) > span { animation-delay: 0.51s; }
.slide.is-active .slide-kicker { animation: fadeUp 0.7s var(--ease-out) 0.1s forwards; }
.slide.is-active .slide-text { animation: fadeUp 0.8s var(--ease-out) 0.55s forwards; }
.slide.is-active .slide-ctas { animation: fadeUp 0.8s var(--ease-out) 0.7s forwards; }

@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* UI do slider */
.hero-ui {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 30px; z-index: 5;
  display: flex; align-items: center;
}
.hero-dots { display: flex; align-items: center; gap: 26px; }
.hero-dot {
  display: flex; flex-direction: column; gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-head);
  transition: color 0.3s ease;
}
.hero-dot i { font-style: normal; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.hero-dot b {
  display: block; width: 64px; height: 2.5px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.hero-dot b s {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green-light), #4ade80);
  text-decoration: none;
}
.hero-dot.is-active { color: #fff; }
.hero-dot.is-active b s { animation: dotFill var(--slide-dur) linear forwards; }
.hero.is-paused .hero-dot.is-active b s { animation-play-state: paused; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }

/* Botão de pausa/retomada — discreto, ao lado dos números (WCAG 2.2.2) */
.hero-pause {
  margin-left: 6px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s var(--ease-spring), border-color 0.3s ease, color 0.3s ease;
}
.hero-pause:hover { background: rgba(255, 255, 255, 0.16); transform: scale(1.08); color: #fff; }
.hero-pause[hidden] { display: none; }
.hero-pause svg { width: 15px; height: 15px; }
.hero-pause .ic-play { display: none; }
.hero-pause.is-paused .ic-pause { display: none; }
.hero-pause.is-paused .ic-play { display: block; }

/* Em slide claro, a UI precisa escurecer */
.hero.on-light .hero-dot { color: rgba(15, 23, 42, 0.68); }
.hero.on-light .hero-dot.is-active { color: var(--navy); }
.hero.on-light .hero-dot b { background: rgba(15, 23, 42, 0.15); }
.hero.on-light .hero-pause { color: rgba(15, 23, 42, 0.6); border-color: rgba(15, 23, 42, 0.2); }
.hero.on-light .hero-pause:hover { color: var(--navy); background: rgba(15, 23, 42, 0.08); }
.hero.on-light .hero-scrollhint span { border-color: rgba(15, 23, 42, 0.4); }
.hero.on-light .hero-scrollhint span::after { background: var(--navy); }

.hero-scrollhint {
  position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%);
  z-index: 5; display: none;
}
.hero-scrollhint span {
  display: block; width: 26px; height: 42px; border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
.hero-scrollhint span::after {
  content: ""; position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px; border-radius: 4px; margin-left: -2px;
  background: #fff;
  animation: scrollHint 1.8s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   CLIENTES (MARQUEE)
   ========================================================================== */
.clients { padding: 44px 0 52px; background: #fff; border-bottom: 1px solid var(--slate-100); }
.clients-head p {
  text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  padding-inline: 32px;
}
.marquee-track img {
  height: 44px; width: 130px;
  object-fit: contain; object-position: center;
  filter: grayscale(1); opacity: 0.6;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s var(--ease-spring);
}
.marquee-track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.08); }

/* ==========================================================================
   SEÇÕES — base
   ========================================================================== */
.section { padding: 104px 0; position: relative; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-kicker::before {
  content: ""; width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform-origin: left; transition: width 0.6s var(--ease-out) 0.15s;
}
.section-kicker.reveal::before { width: 0; }
.section-kicker.reveal.is-visible::before { width: 30px; }
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800; letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--green), var(--green-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Quebra de linha só no desktop; no mobile o texto reflui naturalmente (balance) */
.d-br { display: none; }
@media (min-width: 721px) { .d-br { display: inline; } }
.section-lead { max-width: 640px; color: var(--slate-600); font-size: 17px; margin-bottom: 20px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Variantes de reveal — direção/escala para dar variedade ao scroll */
.reveal-scale { transform: scale(0.93); }
.reveal-l { transform: translateX(-46px); }
.reveal-r { transform: translateX(46px); }
.reveal-scale.is-visible, .reveal-l.is-visible, .reveal-r.is-visible { transform: none; }

/* Aparição de letras — cada palavra do título entra em cascata */
.split { opacity: 1 !important; transform: none !important; }
.split .rw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.62em);
  transition: opacity 0.5s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--wi, 0) * 0.05s);
  will-change: opacity, transform;
}
.split .rw > em { display: inline-block; }
.split.is-visible .rw { opacity: 1; transform: none; }

/* Cartões com glow que segue o mouse */
.glow-card { position: relative; overflow: hidden; }
.glow-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 168, 89, 0.13), transparent 65%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* ==========================================================================
   A EMPRESA
   ========================================================================== */
.empresa { background: #fff; }
.empresa-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
  margin-bottom: 72px;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 38px;
}
.stats li { border-left: 3px solid var(--slate-100); padding-left: 16px; transition: border-color 0.4s ease; }
.stats li:hover { border-color: var(--green); }
.stats b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--navy); line-height: 1.15;
}
/* Estatísticas sem número (texto curto tipo "Frota própria") usam um
   tamanho menor — o clamp grande foi pensado pra números de 1-4 dígitos */
.stats b:not([data-count]) { font-size: clamp(16.5px, 1.6vw, 19px); }
.stats span { font-size: 13px; color: var(--slate-500); }

.empresa-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.empresa-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(15, 23, 42, 0.82) 100%);
  z-index: 1;
}
.empresa-photo img { height: 460px; width: 100%; object-fit: cover; object-position: 12% center; transition: transform 1.2s var(--ease-out); }
.empresa-photo:hover img { transform: scale(1.05); }
.empresa-photo figcaption {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  color: #fff;
}
.empresa-photo figcaption b { display: block; font-family: var(--font-head); font-size: 18px; }
.empresa-photo figcaption span { font-size: 13.5px; color: #cbd5e1; }

.beneficios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.beneficio {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease,
              opacity 0.8s var(--ease-out);
}
.beneficio:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(0, 135, 68, 0.35); border-top-color: var(--green); }

/* Selo de certificação: anel tracejado (como um carimbo oficial), não um
   quadrado de ícone genérico — reforça credencial real, não decoração. */
.beneficio-icon {
  position: relative;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  color: #4ade80;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-spring);
}
.beneficio-icon::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 135, 68, 0.4);
  transition: transform 0.6s var(--ease-out);
}
.beneficio:hover .beneficio-icon { transform: scale(1.08); }
.beneficio:hover .beneficio-icon::before { transform: rotate(24deg); }
.beneficio-icon svg { width: 27px; height: 27px; }
.beneficio h3 { font-size: 19.5px; margin-bottom: 12px; }
.beneficio p { font-size: 15px; color: var(--slate-600); flex: 1; }

/* Tag de "prova" real (número de registro, norma, CNPJ) — estilo etiqueta
   de certificado, não um badge de marketing. */
.beneficio-proof {
  display: inline-flex; align-self: flex-start; align-items: center;
  font-family: ui-monospace, 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--green-dark);
  background: rgba(0, 135, 68, 0.06);
  border: 1px dashed rgba(0, 135, 68, 0.35);
  border-radius: 7px;
  padding: 5px 10px;
  margin-top: 16px;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.servicos { background: var(--surface); }
.servicos::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

/* Card compacto — a recarga (foco do negócio) que se destaca é o .servico-featured
   no grid acima, não este; então aqui é só um resumo com link pro FAQ */
.avcb-card {
  position: relative;
  background:
    radial-gradient(700px circle at 85% -10%, rgba(0, 168, 89, 0.2), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin: 44px 0 56px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.avcb-card::after {
  content: ""; position: absolute; right: -70px; top: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  animation: spinSlow 40s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
/* Layout em 2 colunas: achata a altura do card para ele pesar menos que o
   card de recarga (foco do negócio), mantendo os blocos CLCB/AVCB */
.avcb-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  column-gap: 44px;
  align-items: start;
}
.avcb-copy h3 { grid-column: 1; grid-row: 1; }
.avcb-copy > p { grid-column: 1; grid-row: 2; }
.avcb-tipos { grid-column: 2; grid-row: 1 / 4; align-self: center; }
.avcb-copy > .btn { grid-column: 1; grid-row: 3; justify-self: start; }

.avcb-copy h3 { color: #fff; font-size: clamp(19px, 1.6vw, 20.5px); font-weight: 800; margin-bottom: 10px; max-width: 620px; text-wrap: balance; }
.avcb-copy h3 em {
  font-style: normal;
  background: linear-gradient(100deg, #4ade80, var(--green-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.avcb-copy > p { color: #cbd5e1; max-width: 640px; margin-bottom: 22px; font-size: 14.5px; }

/* Blocos CLCB/AVCB — versão compacta: o cliente pediu esses blocos, mas o
   card inteiro precisa ficar visualmente menor que o de recarga (foco) */
.avcb-tipos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 680px;
}
.avcb-tipo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.avcb-tipo:hover { transform: translateY(-4px); border-color: rgba(0, 168, 89, 0.5); }
.avcb-tipo b { font-family: var(--font-head); font-size: 19px; color: #4ade80; }
.avcb-tipo span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); margin: 2px 0 8px; }
.avcb-tipo p { font-size: 13.5px; color: #cbd5e1; }

.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.servico {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease,
              opacity 0.8s var(--ease-out);
}
.servico:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(0, 135, 68, 0.35); }
.servico-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy); color: #4ade80;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring), background 0.4s ease;
}
.servico:hover .servico-icon { transform: scale(1.1) rotate(4deg); background: var(--green); color: #fff; }
.servico-icon svg { width: 25px; height: 25px; }
.servico h3 { font-size: 17.5px; margin-bottom: 10px; }
.servico p { font-size: 14.5px; color: var(--slate-600); flex: 1; }

/* Recarga e manutenção — carro-chefe do negócio, ganha destaque no grid */
.servico-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 135, 68, 0.07), #fff 60%);
  border-color: rgba(0, 135, 68, 0.3);
  padding: 36px;
}
.servico-featured .servico-icon { width: 64px; height: 64px; background: var(--green); color: #fff; }
.servico-featured .servico-icon svg { width: 29px; height: 29px; }
.servico-featured h3 { font-size: 21px; }
.servico-featured p { font-size: 15px; }

/* ==========================================================================
   PRODUTOS
   ========================================================================== */
.produtos { background: #fff; }
.showroom {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 34px;
}
.show-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease,
              opacity 0.8s var(--ease-out);
}
.show-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0, 135, 68, 0.4); }
.show-media {
  position: relative;
  height: 210px;
  background: linear-gradient(160deg, #ffffff 0%, var(--slate-100) 100%);
  display: grid; place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-100);
}
.show-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at 50% 120%, rgba(0, 135, 68, 0.10), transparent 60%);
}
.show-media img {
  max-width: 78%; max-height: 78%; width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.16));
  transition: transform 0.6s var(--ease-out);
}
.show-card:hover .show-media img { transform: scale(1.07) translateY(-4px); }
.show-count {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 135, 68, 0.2);
  border-radius: 999px; padding: 5px 12px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.show-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.show-body h3 { font-size: 19px; margin-bottom: 10px; }
.show-body h3 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--green), var(--green-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.show-body p { font-size: 14px; color: var(--slate-600); flex: 1; }
.produto-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--green-dark);
}
.produto-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.produto-link:hover svg { transform: translateX(5px); }

.produtos-note { text-align: center; margin-top: 34px; }
.produtos-note h3 { font-size: 21px; margin-bottom: 8px; }
.produtos-note p { font-size: 15px; color: var(--slate-600); max-width: 460px; margin: 0 auto 22px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px circle at 12% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(120deg, #b91c1c 0%, var(--red) 45%, var(--red-light) 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(115deg, #000 20%, transparent 65%);
  mask-image: linear-gradient(115deg, #000 20%, transparent 65%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 16.5px; max-width: 540px; }

/* ==========================================================================
   FAQ / DICAS
   ========================================================================== */
.faq { background: var(--surface); }
.faq-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 64px; align-items: start;
}
.faq-head { position: sticky; top: 120px; }
.faq-head .btn { margin-top: 8px; }

.accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.faq-item[open] { border-color: rgba(0, 135, 68, 0.4); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 24px;
  cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: var(--navy);
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-icon {
  position: relative; flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--slate-100);
  transition: background 0.35s ease, transform 0.45s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; border-radius: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out), background 0.35s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--green); transform: rotate(135deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-body { overflow: hidden; }
.faq-body p {
  padding: 0 24px 22px;
  color: var(--slate-600); font-size: 15px;
  max-width: 640px;
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contato { background: #fff; }
.contato-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 30px; margin-top: 40px; align-items: start;
}

.form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy-700); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px;
  color: var(--navy);
  background: var(--surface);
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 135, 68, 0.12);
}
.field.has-error input, .field.has-error select { border-color: var(--red); box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1); }
.form-submit { width: 100%; margin-top: 6px; }
.form-hint { font-size: 12.5px; color: var(--slate-500); text-align: center; margin-top: 14px; }
.form-error { font-size: 13.5px; font-weight: 600; color: var(--red); text-align: center; margin: 2px 0 12px; }
.form-error[hidden] { display: none; }

.contato-info { display: flex; flex-direction: column; gap: 22px; }
.info-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 18px; margin-bottom: 20px; }
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--slate-100); color: var(--navy);
}
.info-icon svg { width: 19px; height: 19px; }
.info-icon-green { background: rgba(37, 211, 102, 0.14); color: #16a34a; }
.info-list b { display: block; font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-500); }
.info-list a, .info-list span { font-size: 15px; color: var(--navy); font-weight: 500; }
.info-list a:hover { color: var(--green-dark); }

.cnpj { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--slate-200); font-size: 13px; color: var(--slate-500); line-height: 1.5; }

/* Faixa horizontal do mapa — ocupa toda a largura abaixo do formulário/contato,
   com o link "Como chegar" flutuando como pílula de vidro sobre o mapa. */
.map-band {
  position: relative;
  margin-top: 26px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.map-band:hover { box-shadow: var(--shadow-lg); border-color: rgba(0, 135, 68, 0.35); }
.map-band-embed {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(0.25) contrast(1.04);
  transition: filter 0.5s ease;
}
.map-band:hover .map-band-embed { filter: grayscale(0); }

.map-band-link {
  position: absolute; left: 20px; bottom: 20px; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  max-width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.35s ease;
}
.map-band-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: rgba(255, 255, 255, 0.97); }
.map-card-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(0, 135, 68, 0.1); color: var(--green-dark);
}
.map-card-icon svg { width: 21px; height: 21px; }
.map-band-link b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); }
.map-band-link span { font-size: 13px; color: var(--slate-500); }
.map-card-arrow { width: 18px; height: 18px; margin-left: 6px; flex: 0 0 auto; color: var(--slate-400); transition: transform 0.3s var(--ease-out), color 0.3s ease; }
.map-band-link:hover .map-card-arrow { color: var(--green); transform: translate(3px, -3px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: #cbd5e1; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}
/* min-width:0 é necessário pro item do grid poder encolher — sem isso, o
   card da logo (com o selo "Desde 1992") força a coluna a ficar larga
   demais e o conteúdo vaza por cima da coluna "Navegação" ao lado */
.footer-brand { min-width: 0; }
.footer-logo {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  background: #fff; border-radius: 12px; padding: 10px 16px;
  margin-bottom: 18px; max-width: 100%;
}
.footer-logo img { height: 44px; width: auto; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring), color 0.3s ease;
}
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff; font-size: 15px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.footer-col a {
  display: block; font-size: 14.5px; padding: 5px 0;
  color: #94a3b8;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}
.footer-col a:hover { color: #4ade80; transform: translateX(4px); }
.footer-col p { font-size: 14px; color: #94a3b8; margin-top: 10px; }
.footer-horario {
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px; color: #94a3b8;
  text-align: center;
}
.footer-bottom a { color: #cbd5e1; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #4ade80; }

/* ==========================================================================
   CONFIRMAÇÃO DE ENVIO DO FORMULÁRIO
   ========================================================================== */
.form-success {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}
.form-success[hidden] { display: none; }
.form-success.is-visible {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}
.form-success-card {
  background: #fff;
  border-radius: 24px;
  padding: 46px 38px;
  max-width: 380px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.35s var(--ease-out);
}
.form-success.is-visible .form-success-card { transform: scale(1); opacity: 1; }

.form-success-check { width: 84px; height: 84px; margin: 0 auto 22px; }
.fsc-circle {
  stroke: var(--green); stroke-width: 3;
  stroke-dasharray: 152; stroke-dashoffset: 152;
  transition: stroke-dashoffset 0.5s var(--ease-out) 0.1s;
}
.fsc-check {
  stroke: var(--green); stroke-width: 4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.4s var(--ease-out) 0.5s;
}
.form-success.is-visible .fsc-circle { stroke-dashoffset: 0; }
.form-success.is-visible .fsc-check { stroke-dashoffset: 0; }

.form-success-msg { font-size: 15.5px; color: var(--slate-600); line-height: 1.55; }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whats-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #34d399 0%, #25d366 40%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.whats-float svg { width: 30px; height: 30px; }
.whats-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 16px 40px rgba(18, 140, 126, 0.55); }
.whats-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: whatsPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ==========================================================================
   NAV MOBILE (overlay)
   ========================================================================== */
@media (max-width: 1080px) {
  .nav {
    /* z-index bem acima de tudo (header:100, scroll-progress:1002,
       form-success:2000) — o menu nunca pode abrir "por baixo" de outra
       camada da página, senão o texto fica ilegível sobre o conteúdo. */
    position: fixed; inset: 0; z-index: 5000;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    background: rgba(15, 23, 42, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.45s ease; }
  .nav-link {
    color: #e2e8f0; font-size: 24px; font-family: var(--font-head); font-weight: 700;
    padding: 12px 22px;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s ease;
  }
  .nav.is-open .nav-link { opacity: 1; transform: translateY(0); }
  .nav.is-open .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .nav.is-open .nav-link:nth-child(2) { transition-delay: 0.13s; }
  .nav.is-open .nav-link:nth-child(3) { transition-delay: 0.18s; }
  .nav.is-open .nav-link:nth-child(4) { transition-delay: 0.23s; }
  .nav.is-open .nav-link:nth-child(5) { transition-delay: 0.28s; }
  .nav.is-open .nav-link:nth-child(6) { transition-delay: 0.33s; }
  .nav.is-open .nav-link:nth-child(7) { transition-delay: 0.38s; }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.is-active { color: #4ade80; background: none; }
  .nav-toggle { display: flex; position: relative; z-index: 5001; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .empresa-grid { grid-template-columns: 1fr; gap: 44px; }
  .empresa-photo img { height: 380px; }
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; --header-h-scrolled: 62px; }
  .section { padding: 72px 0; }
  .container { width: min(100% - 40px, var(--container)); }

  /* Área de toque: no dedo, links de 19-22px de altura erram muito.
     Cresce só a área clicável (padding), sem mexer no visual do texto. */
  .produto-link { padding: 11px 0; margin-top: 10px; }
  .info-list a { display: inline-block; padding: 11px 0; }
  .footer-col a { padding: 10px 0; }
  .hero-dot { padding: 6px 0; }

  /* Top bar mobile: itens centralizados, uma linha limpa cada */
  .topbar { font-size: 11.5px; }
  .topbar-inner { justify-content: center; gap: 6px 18px; padding-block: 7px; }
  .topbar-right { gap: 16px; }
  .topbar-item { gap: 5px; }
  .topbar-item svg { width: 13px; height: 13px; }

  .brand img { height: 38px; }
  .header.is-scrolled .brand img { height: 34px; }
  .header-cta { display: none; }
  .header .brand-since { display: none; } /* header mobile fica só com a marca — evita apertar com o menu */

  .hero { height: max(560px, calc(100svh - 120px)); }
  .slide-content { padding-bottom: 96px; }
  .slide-text { font-size: 15px; }
  .slide-ctas .btn { padding: 13px 20px; font-size: 14px; }
  .hero-ui { bottom: 22px; }
  .hero-dot b { width: 40px; }
  .hero-dots { gap: 20px; }

  .marquee-track { gap: 40px; }
  .marquee-track img { height: 34px; width: 100px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .avcb-card { padding: 26px 22px; }
  /* volta a empilhar: em telas estreitas as 2 colunas não cabem */
  .avcb-copy { grid-template-columns: 1fr; }
  .avcb-copy h3, .avcb-copy > p, .avcb-tipos, .avcb-copy > .btn {
    grid-column: 1; grid-row: auto; align-self: auto;
  }
  .avcb-tipos { grid-template-columns: 1fr; margin-bottom: 22px; }
  .cta-band { padding: 56px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .map-band { height: 260px; margin-top: 20px; }
  .map-band-link { left: 14px; bottom: 14px; right: 14px; max-width: none; padding: 12px 14px; gap: 12px; }
  .map-band-link span { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 0 44px; }
  .whats-float { right: 18px; bottom: 18px; width: 56px; height: 56px; }
  .whats-float svg { width: 27px; height: 27px; }
}

@media (max-width: 560px) {
  .beneficios-grid, .servicos-grid, .showroom { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .slide-title { font-size: clamp(30px, 9vw, 38px); }
  .topbar-inner { flex-direction: column; align-items: center; gap: 3px; }
  .topbar-right { justify-content: center; }
}

/* ==========================================================================
   ACESSIBILIDADE / MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale, .reveal-l, .reveal-r { opacity: 1; transform: none; }
  .split .rw { opacity: 1; transform: none; }
  .section-kicker.reveal::before { width: 30px; }
  .h-line > span { transform: none; }
  .slide-kicker, .slide-text, .slide-ctas { opacity: 1; transform: none; }
  .hero-embers { display: none; }
}

/* ?motion=0 — modo estático para screenshots/QA (mesmas regras acima) */
.motion-off *, .motion-off *::before, .motion-off *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
.motion-off { scroll-behavior: auto; }
.motion-off .reveal, .motion-off .reveal-scale, .motion-off .reveal-l, .motion-off .reveal-r { opacity: 1; transform: none; }
.motion-off .split .rw { opacity: 1; transform: none; }
.motion-off .section-kicker.reveal::before { width: 30px; }
.motion-off .h-line > span { transform: none; }
.motion-off .slide-kicker, .motion-off .slide-text, .motion-off .slide-ctas { opacity: 1; transform: none; }
.motion-off .hero-embers { display: none; }

/* Consentimento de cookies */
.cookie-consent {
  position: fixed; z-index: 1000; left: 24px; right: 24px; bottom: 24px;
  max-width: 620px; margin: 0 auto; padding: 18px 20px;
  display: flex; align-items: center; gap: 18px; justify-content: space-between;
  color: #fff; background: #0f172a; border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; box-shadow: 0 16px 45px rgba(15,23,42,.32);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; font-size: 13px; line-height: 1.45; }
.cookie-consent-actions { display: flex; flex: none; gap: 8px; }
.cookie-btn { border: 0; border-radius: 8px; padding: 10px 13px; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.cookie-btn-primary { color: #062d1f; background: #54e3a6; }
.cookie-btn-secondary { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.45); }
@media (max-width: 640px) {
  .cookie-consent { left: 14px; right: 14px; bottom: 14px; align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-consent-actions { justify-content: flex-end; }
}
