/* =============================================================
   UNITRACKER — style.css
   Estrutura: Reset → Tokens → Base → Layout → Componentes →
              Seções → Utilitários → Acessibilidade → Media Queries
   ============================================================= */

/* -------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* -------------------------------------------------------------
   2. TOKENS (CSS Custom Properties)
   ------------------------------------------------------------- */
:root {
  /* Cores */
  --red:        #E8192C;
  --red2:       #C8111F;
  --red-soft:   rgba(232, 25, 44, .08);
  --black:      #0C0C0C;
  --dark:       #1C1C1C;
  --gray:       #4A4A4A;
  --muted:      #888;
  --light:      #F7F7F7;
  --border:     #EBEBEB;
  --white:      #FFFFFF;

  /* Tipografia */
  --font-main: 'Inter', sans-serif;

  /* Espaçamentos base */
  --section-py: 100px;
  --gutter:     6%;
}

/* -------------------------------------------------------------
   3. BASE
   ------------------------------------------------------------- */
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* Cursor customizado — desativado em touch (ver JS) */
body.has-custom-cursor { cursor: none; }

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

a { text-decoration: none; }

/* -------------------------------------------------------------
   4. CURSOR CUSTOMIZADO
   ------------------------------------------------------------- */
#cur-dot,
#cur-circle { display: none; } /* visível via JS apenas em não-touch */

body.has-custom-cursor #cur-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s;
}

body.has-custom-cursor #cur-circle {
  display: block;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s, border-color .25s;
}

body.has-custom-cursor:has(a:hover) #cur-circle,
body.has-custom-cursor:has(button:hover) #cur-circle {
  width: 60px;
  height: 60px;
  border-color: rgba(232, 25, 44, .7);
}

/* -------------------------------------------------------------
   5. NAVEGAÇÃO
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
}

nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: all .4s;
}

nav.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
}

.nav-links a:hover { color: var(--red); }

.nav-btn {
  background: var(--red);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .25s;
}

.nav-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 25, 44, .35);
}

/* Menu mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--black);
}

.nav-toggle svg { display: block; }

/* -------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------- */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--light);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-bg-red {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 6px;
  background: var(--red);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { padding-right: 20px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  border: 1px solid rgba(232, 25, 44, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up .6s .2s forwards;
}

.hero-h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: .95;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up .7s .35s forwards;
}

.hero-h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up .7s .5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .7s .65s forwards;
}

.trust-strip {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .6s .8s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.susep-badge {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* Hero — coluna direita */
.hero-right {
  position: relative;
  height: 560px;
}

.hero-img-wrap {
  position: absolute;
  inset: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .12);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .1s ease-out;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
}

/* Float cards do hero */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  padding: 14px 18px;
  z-index: 3;
  transition: transform .1s ease-out;
}

.fc-top-left    { top: 40px; left: -20px; animation: bob1 4s ease-in-out infinite; }
.fc-bottom-right{ bottom: 80px; right: -10px; animation: bob2 5s ease-in-out infinite; }
.fc-mid         { top: 50%; left: -30px; transform: translateY(-50%); animation: bob3 3.5s ease-in-out infinite; }

.fc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.fc-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

.fc-value span { color: var(--red); }

.fc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  margin-top: 3px;
  letter-spacing: .5px;
}

.fc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink .9s infinite;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.fc-text .fc-name { font-size: 13px; font-weight: 600; color: var(--black); }
.fc-text .fc-desc { font-size: 11px; color: var(--muted); }

/* -------------------------------------------------------------
   7. STATS
   ------------------------------------------------------------- */
#stats {
  background: var(--black);
  padding: 0 var(--gutter);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 40px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
  color: #fff;
}

.stat-n em { color: var(--red); font-style: normal; }

.stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 8px;
  display: block;
}

.stats-slogan {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .3px;
  padding: 22px var(--gutter) 0;
}

/* -------------------------------------------------------------
   8. SEÇÕES COMUNS
   ------------------------------------------------------------- */
section { padding: var(--section-py) var(--gutter); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

h2.ttl {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: .97;
  margin-bottom: 20px;
  color: var(--black);
}

h2.ttl em { color: var(--red); font-style: normal; }

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

/* -------------------------------------------------------------
   9. PRODUTOS
   ------------------------------------------------------------- */
#produtos { background: var(--light); }

.prod-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prod-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: all .35s;
  cursor: default;
  border: 1.5px solid transparent;
}

.prod-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
  border-color: rgba(232, 25, 44, .15);
}

.prod-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.prod-card:hover .prod-img img { transform: scale(1.05); }

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 60%);
}

.prod-body { padding: 32px; }

.prod-badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.prod-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.prod-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.feat-list li {
  font-size: 13px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 9px;
}

.feat-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: gap .25s;
}

.prod-cta:hover { gap: 12px; }

/* -------------------------------------------------------------
   10. RASTREAMENTO (split layout)
   ------------------------------------------------------------- */
#rastreamento { background: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }
.step:hover .step-n { background: var(--red); color: #fff; border-color: var(--red); }

.step-n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  transition: all .25s;
  flex-shrink: 0;
}

.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  transition: all .2s;
}

.tag:hover {
  background: var(--red-soft);
  border-color: rgba(232, 25, 44, .2);
  color: var(--red);
}

/* Image frame com overlay cards */
.img-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.img-frame .main-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
  position: relative;
}

.img-frame .main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.img-frame .main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
}

.overlay-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
  padding: 14px 18px;
  z-index: 2;
}

.oc-tl { top: -20px; left: -20px; }
.oc-br { bottom: 60px; right: -20px; }

.oc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.oc-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
}

.oc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  margin-top: 3px;
}

.oc-live span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink .9s infinite;
}

/* -------------------------------------------------------------
   11. PROTEÇÃO
   ------------------------------------------------------------- */
#protecao { background: var(--light); }

.cov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.cov-item {
  background: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  transition: all .2s;
}

.cov-item:hover { background: #FFF5F5; color: var(--red); }

.cov-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  border: 1.5px solid rgba(232, 25, 44, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}

.cov-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--red);
  stroke-width: 2.5;
  fill: none;
}

.cov-item:hover .cov-check { background: var(--red); border-color: var(--red); }
.cov-item:hover .cov-check svg { stroke: #fff; }

/* -------------------------------------------------------------
   12. ECOSSISTEMA
   ------------------------------------------------------------- */
#ecossistema {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.eco-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.eco-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s;
  cursor: default;
}

.eco-card:hover {
  border-color: rgba(232, 25, 44, .25);
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.eco-card.featured { border-color: rgba(232, 25, 44, .3); background: rgba(232, 25, 44, .02); }
.eco-card.featured:hover { background: rgba(232, 25, 44, .05); border-color: var(--red); }

.eco-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-nm { font-size: 13px; font-weight: 700; color: var(--black); line-height: 1.3; }
.eco-sb { font-size: 11px; color: var(--muted); margin-top: 2px; }

.eco-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   13. DIFERENCIAIS
   ------------------------------------------------------------- */
#diferenciais { background: var(--black); }

#diferenciais .eyebrow::before { background: var(--red); }
#diferenciais .ttl            { color: #fff; }
#diferenciais .lead           { color: rgba(255, 255, 255, .4); }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .05);
  margin-top: 60px;
}

.dif-c {
  background: var(--black);
  padding: 40px 32px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.dif-c::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .4s;
}

.dif-c:hover { background: #111; }
.dif-c:hover::before { width: 100%; }

.dif-ico {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .3s;
}

.dif-c:hover .dif-ico { border-color: rgba(232, 25, 44, .4); background: rgba(232, 25, 44, .06); }

.dif-ico svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, .5);
  fill: none;
  stroke-width: 1.6;
  transition: stroke .3s;
}

.dif-c:hover .dif-ico svg { stroke: var(--red); }

.dif-c h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.dif-c p  { font-size: 14px; color: rgba(255, 255, 255, .3); line-height: 1.65; }

/* -------------------------------------------------------------
   14. DEPOIMENTOS
   ------------------------------------------------------------- */
#depoimentos {
  background: var(--light);
  padding: 0;
}

.dep-head {
  padding: 100px var(--gutter) 0;
  margin-bottom: 52px;
}

/* Carrossel */
.dep-overflow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 100px;
  /* Esconde scrollbar visualmente mas mantém funcionalidade */
  scrollbar-width: none;
}

.dep-overflow::-webkit-scrollbar { display: none; }

.dep-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: dep-run 28s linear infinite;
  padding: 0 var(--gutter);
}

/* Pausa no hover (desktop) e em touch (via JS) */
.dep-track:hover,
.dep-track.paused { animation-play-state: paused; }

.dep-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1.5px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.dep-card:hover {
  border-color: rgba(232, 25, 44, .2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
}

.dep-stars {
  color: var(--red);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.dep-txt {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 300;
}

.dep-auth { display: flex; align-items: center; gap: 12px; }

.dep-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red-soft);
  border: 1.5px solid rgba(232, 25, 44, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.dep-nm  { font-size: 14px; font-weight: 600; color: var(--black); }
.dep-rl  { font-size: 12px; color: var(--muted); }

/* -------------------------------------------------------------
   15. CTA FINAL
   ------------------------------------------------------------- */
#cta {
  background: var(--red);
  padding: 110px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: .95;
  color: #fff;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-info {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.ci { font-size: 13px; color: rgba(255, 255, 255, .55); }
.ci strong { display: block; font-size: 16px; color: #fff; margin-bottom: 2px; }

/* -------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------- */
footer {
  background: var(--black);
  padding: 72px var(--gutter) 40px;
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.foot-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
}

.foot-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.75;
  max-width: 280px;
}

.foot-col h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
}

.foot-col a:hover { color: #fff; }

.foot-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 12px;
  color: rgba(255, 255, 255, .18);
}

.seals { display: flex; gap: 10px; }

.seal {
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .2);
}

.susep-seal {
  height: 250px;
  width: auto;
  max-width: none;
  opacity: .75;
}

/* -------------------------------------------------------------
   17. COMPONENTES GLOBAIS (botões, WA, overlay cards)
   ------------------------------------------------------------- */

/* Botões */
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  min-height: 44px; /* touch target */
}

.btn-red:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 25, 44, .4);
}

.btn-ghost {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: .6;
  transition: opacity .2s;
  min-height: 44px;
}

.btn-ghost:hover { opacity: 1; }
.btn-ghost svg   { transition: transform .25s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 16px 36px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  min-height: 44px;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.2); }

.btn-outline {
  color: #fff;
  padding: 16px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  min-height: 44px;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* WhatsApp flutuante */
.wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 700;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  animation: wa-pulse 2.5s infinite;
  min-width: 44px; /* touch target */
}

.wa:hover  { transform: scale(1.08); }
.wa svg    { width: 28px; height: 28px; fill: #fff; }

/* -------------------------------------------------------------
   18. UTILITÁRIOS — Reveal (Intersection Observer)
   ------------------------------------------------------------- */
.rv   { opacity: 0; transform: translateY(36px);  transition: opacity .75s ease, transform .75s ease; }
.rv-l { opacity: 0; transform: translateX(-36px); transition: opacity .75s ease, transform .75s ease; }
.rv-r { opacity: 0; transform: translateX(36px);  transition: opacity .75s ease, transform .75s ease; }
.in   { opacity: 1; transform: translate(0); }

/* -------------------------------------------------------------
   19. ACESSIBILIDADE
   ------------------------------------------------------------- */

/* Foco visível — nunca remove sem substituto */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
}

.skip-link:focus { top: 8px; }

/* prefers-reduced-motion — desativa animações */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .dep-track { animation: none; }
}

/* -------------------------------------------------------------
   20. KEYFRAMES
   ------------------------------------------------------------- */
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:.2} }
@keyframes fade-up  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes bob1     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes bob2     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes bob3     { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 7px))} }
@keyframes dep-run  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 36px rgba(37,211,102,.65)} }

/* -------------------------------------------------------------
   21. MEDIA QUERIES
   ------------------------------------------------------------- */

/* — 1280px — */
@media (max-width: 1280px) {
  .eco-grid { grid-template-columns: repeat(3, 1fr); }
}

/* — 1024px — */
@media (max-width: 1024px) {
  .foot-g {
    grid-template-columns: 1fr 1fr;
  }

  .dif-grid { grid-template-columns: repeat(2, 1fr); }

  .eco-grid { grid-template-columns: repeat(2, 1fr); }
}

/* — 768px — */
@media (max-width: 768px) {
  :root { --section-py: 64px; }

  /* Nav mobile */
  .nav-links,
  .nav-btn { display: none; }

  .nav-toggle { display: flex; }

  /* Nav aberta */
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    padding: 24px var(--gutter) 32px;
    gap: 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    z-index: 599;
  }

  .site-header.nav-open .nav-btn {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left { padding-right: 0; }

  /* Esconde imagem do hero em mobile muito pequeno */
  .hero-right { height: 320px; }

  /* Float cards — evita overflow em mobile */
  .fc-top-left    { left: 12px; top: 16px; }
  .fc-bottom-right{ right: 12px; bottom: 16px; }
  .fc-mid         { left: 50%; transform: translate(-50%, -50%); }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-bottom: none; }

  /* Produtos */
  .prod-intro { grid-template-columns: 1fr; gap: 24px; }
  .prod-grid  { grid-template-columns: 1fr; }

  /* Split sections */
  .split { grid-template-columns: 1fr; gap: 48px; }
  .rv-l[style*="order:2"] { order: 1 !important; }
  .rv-r[style*="order:1"] { order: 2 !important; }

  /* Ecossistema */
  .eco-grid { grid-template-columns: repeat(2, 1fr); }

  /* Diferenciais */
  .dif-grid { grid-template-columns: 1fr; }

  /* Footer */
  .foot-g { grid-template-columns: 1fr 1fr; }
  .foot-b { flex-direction: column; gap: 16px; text-align: center; }
  
  /* Frotas — blocos extras */
  .frotas-cards {
    grid-template-columns: 1fr !important;
  }

  .frotas-adas {
    grid-template-columns: 1fr !important;
  }
}

/* — 480px — */
@media (max-width: 480px) {
  .hero-right { display: none; } /* esconde completamente em telas muito pequenas */

  .hero-h1 { letter-spacing: -1.5px; }

  .stats-row { grid-template-columns: 1fr 1fr; }

  .eco-grid { grid-template-columns: 1fr; }

  .foot-g { grid-template-columns: 1fr; }

  .cov-grid { grid-template-columns: 1fr; }

  .prod-intro .lead { max-width: 100%; }

  /* Float cards maiores em viewport estreito: simplifica */
  .fc-mid { display: none; }
  
  .frotas-stat {
    display: block !important;
    width: 100%;
  }
}
