/* =========================================================
   CB TEC — Style v2 (claro, moderno, paleta original)
   Cores oficiais:
   #003362 navy · #17c39a ciano · #0b8f77 azul médio
   #E7F8F2 azul claro · #F2FAF7 cinza azulado · #b9e2d5 borda
   ========================================================= */

/* ----- Reset & tokens ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta CB TEC */
  --navy: #003362;
  --navy-deep: #00264a;
  --cyan: #17c39a;
  --cyan-bright: #2fd0a2;
  --blue: #0b8f77;
  --light: #E7F8F2;
  --soft: #F2FAF7;
  --border: #b9e2d5;
  --border-soft: #d9f0e7;

  /* Tipografia / base */
  --white: #ffffff;
  --ink: #0e1e30;
  --ink-soft: #2d3e54;
  --muted: #5b6e85;
  --muted-soft: #8095ab;

  /* Acentos / efeitos */
  --grad: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--cyan) 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,51,98,.04), rgba(23,195,154,.06));
  --grad-light: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
  --grad-bold: linear-gradient(135deg, #003362 0%, #17c39a 50%, #2fd0a2 100%);
  --grad-accent: linear-gradient(135deg, #17c39a 0%, #0b8f77 100%);
  --shadow-sm: 0 4px 12px rgba(0,51,98,.06);
  --shadow: 0 16px 40px rgba(0,51,98,.10);
  --shadow-lg: 0 28px 70px rgba(0,51,98,.16);
  --shadow-cyan: 0 18px 44px rgba(23,195,154,.32);
  --shadow-xl: 0 32px 80px rgba(0,51,98,.2);

  /* Layout */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

::selection { background: var(--cyan); color: white; }

/* Foco visível (acessibilidade) */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 8px;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ----- Scroll progress ----- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  /* barra em largura total + scaleX: transform e compositado na GPU.
     Animar `width` forcava recalculo de layout a cada frame de scroll. */
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #17c39a 0%, #003362 100%);
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(23,195,154,.8), 0 1px 0 rgba(0,51,98,.4);
  transition: transform .12s ease-out;
  will-change: transform;
}

/* ----- WhatsApp float ----- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* #16a34a com texto branco dava 3,1:1 (reprova AA); #15803d da 4,9:1 */
  background: #15803d;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 14px 36px rgba(22,163,74,.36);
  animation: pulse-whats 2.4s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(22,163,74,.5);
}
.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: block;
}

@keyframes pulse-whats {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .25s ease;
}
.header.scrolled {
  box-shadow: 0 8px 30px rgba(0,51,98,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand img {
  width: clamp(150px, 16vw, 175px);
  height: auto;
}

.menu {
  display: flex;
  gap: 28px;
}
.menu a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  transition: color .2s;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-light);
  border-radius: 2px;
  transition: width .25s ease;
}
.menu a:hover { color: var(--cyan); }
.menu a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--grad);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: var(--shadow-cyan);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(23,195,154,.42);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 99px;
  transition: transform .3s, opacity .25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-bold);
  color: white;
  box-shadow: var(--shadow-xl);
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 32px 64px rgba(23,195,154,.6);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-ghost {
  background: rgba(255,255,255,.7);
  border: 1.5px solid var(--border);
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: white;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover {
  background: var(--grad);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vh, 80px) 0 clamp(60px, 10vh, 110px);
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,51,98,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,51,98,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  /* sem filter: blur — o gradiente radial ja e suave, e o blur criava
     um layer offscreen de 600x600 sem ganho visual nenhum */
  background: radial-gradient(circle, rgba(23,195,154,.18) 0%, rgba(23,195,154,0) 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: 620px;
}

.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(23,195,154,.2);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(23,195,154,.2); }
  50% { box-shadow: 0 0 0 8px rgba(23,195,154,.06); }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 24px;
}
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* estende a área pintada para não cortar a perna de g, ç, y, p */
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.hero-lead {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-lead strong { color: var(--navy); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-tags a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all .2s;
}
.hero-tags a:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.trust-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual (foto real) */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 640px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.hero-image-wrap:hover { transform: rotate(0deg) scale(1.02); }
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-frame {
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 22px;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  top: 43%;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  z-index: 3;
  animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.badge-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 5px rgba(22,163,74,.2);
  animation: pulse-badge 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 5px rgba(22,163,74,.2); }
  50% { box-shadow: 0 0 0 9px rgba(22,163,74,.05); }
}
.badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.badge-text span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.hero-spec {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  z-index: 3;
  max-width: 220px;
}
.spec-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad);
  color: white;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-spec p {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.spec-1 {
  bottom: 32%;
  right: -24px;
  animation: float-badge 4.5s ease-in-out infinite;
  animation-delay: -1s;
}
.spec-2 {
  bottom: 8%;
  left: -20px;
  animation: float-badge 5s ease-in-out infinite;
  animation-delay: -2s;
}

/* ----- Section base ----- */
.section {
  padding: clamp(60px, 9vw, 100px) 0;
  position: relative;
}
.section-white { background: white; }
.section-light { background: var(--soft); }
.section-feature {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(23,195,154,.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(23,195,154,.1), transparent 45%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.section-feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.section-feature .container { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 32px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  /* --blue (6,1:1) e nao --cyan (3,3:1): ciano sobre branco reprova no WCAG AA */
  color: var(--blue);
  margin-bottom: 12px;
}
.kicker.on-feature { color: var(--cyan-bright); }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.section-head p {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--muted);
  max-width: 600px;
  margin-inline: auto;
}
.section-head.left p { margin-inline: 0; }
.section-feature .section-head h2,
.section-feature h2 { color: white; }
.section-feature h2 .text-gradient-light {
  background: linear-gradient(135deg, var(--cyan-bright), #7ed4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.section-feature p { color: rgba(255,255,255,.78); }

.center-cta {
  text-align: center;
  margin-top: 40px;
}

/* ----- Quick path ----- */
.quick-path {
  padding: clamp(50px, 8vw, 90px) 0 clamp(50px, 8vw, 90px);
  background: white;
  position: relative;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quick-card {
  position: relative;
  display: block;
  padding: 32px 28px 28px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all .3s ease;
  overflow: hidden;
}
.quick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .3s;
}
.quick-card > * { position: relative; }
.quick-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.quick-card:hover::before { opacity: 1; }
.quick-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light);
  color: var(--cyan);            /* define currentColor pros paths fill="currentColor" */
  margin-bottom: 20px;
  transition: background .25s, color .25s;
}
.quick-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  color: var(--cyan);
  transition: fill .25s, color .25s;
}
.quick-card:hover .quick-icon {
  background: var(--grad);
  color: white;
}
.quick-card:hover .quick-icon svg { fill: white; color: white; }
.quick-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.quick-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.quick-arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-size: 22px;
  color: var(--cyan);
  font-weight: 700;
  transition: transform .25s;
}
.quick-card:hover .quick-arrow { transform: translateX(6px); }

/* ----- Rural cards ----- */
.rural-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* Variante com 2 colunas centralizadas (Visão e Missão na página Sobre) */
.rural-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-inline: auto;
}
/* Texto da seção "Nossa história" (página Sobre) */
.story-copy p { color: var(--ink-soft); }
.story-copy strong { color: var(--navy); }

/* ----- Clientes atendidos (Empresas que confiam na CB TEC) ----- */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.client-item {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 200px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 51, 98, .12);
}
.client-item img {
  max-height: 78px;
  max-width: 156px;
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}
@media (max-width: 640px) {
  .clients-grid { gap: 12px; }
  .client-item { width: calc(50% - 6px); height: 96px; }
  .client-item img { max-height: 62px; max-width: 130px; }
}
.rural-card {
  position: relative;
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all .3s;
  overflow: hidden;
}
.rural-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-light);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s;
}
.rural-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.rural-card:hover::after { transform: scaleY(1); }
.rural-num {
  display: block;
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--cyan);
  -webkit-text-stroke: 0;
  text-shadow: 0 8px 18px rgba(23,195,154,.18);
  margin-bottom: 14px;
  letter-spacing: -.04em;
}
.rural-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.rural-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ----- Sistema poste solar ----- */
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.system-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 18px;
}
.system-copy > p { color: rgba(255,255,255,.78); margin-bottom: 28px; }
.tech-list {
  display: grid;
  gap: 10px;
  list-style: none;
}
.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background .25s;
}
.tech-list li:hover { background: rgba(23,195,154,.12); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-light);
  color: var(--navy);
  flex-shrink: 0;
}
.check svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  stroke-width: 3;
}

/* Network map */
.network-map {
  position: relative;
  height: 420px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.network-map path {
  stroke: rgba(23,195,154,.7);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 6 6;
  animation: dash 12s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -120; } }
.node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 110px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.node-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 64px;
  background: var(--grad);
  border-color: transparent;
  font-size: 13px;
  box-shadow: var(--shadow-cyan);
}
.node-1 { left: 30px; top: 60px; }
.node-2 { left: 30px; bottom: 60px; }
.node-3 { right: 30px; top: 60px; }
.node-4 { right: 30px; bottom: 60px; }
.node-5 { left: 50%; top: 26px; transform: translateX(-50%); }

/* ----- Split (Olho Vivo / diferenciais) ----- */
.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list > div {
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
}
.feature-list > div:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.section-light .feature-list > div {
  background: white;
}
.feature-list strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.highlight-box {
  padding: 36px;
  background: linear-gradient(160deg, white, var(--light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,154,.18), transparent 70%);
}
.highlight-box h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 10px 0 14px;
}
.highlight-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

/* Compare card */
.compare-card {
  padding: 36px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare-card h3 {
  text-align: center;
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 24px;
}
.compare-card h3 span {
  color: var(--cyan);
  font-weight: 700;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compare-col {
  padding: 22px 20px;
  background: var(--soft);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}
.compare-col.good {
  background: linear-gradient(160deg, var(--light), white);
  border-color: var(--cyan);
}
.compare-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.compare-col.bad h4 { color: var(--muted); }
.compare-col.good h4 { color: var(--cyan); }
.compare-col p {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-col p:last-child { border-bottom: 0; }
.compare-col.bad p::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: #d83131;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='15' y1='9' x2='9' y2='15'/><line x1='9' y1='9' x2='15' y2='15'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='15' y1='9' x2='9' y2='15'/><line x1='9' y1='9' x2='15' y2='15'/></svg>") center/contain no-repeat;
}
.compare-col.good p::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: #149c5a;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") center/contain no-repeat;
}

/* ----- Solution / Complete grid ----- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all .3s;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.solution-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #003362;
  color: var(--cyan);
  margin-bottom: 22px;
  transition: all .25s;
}
.solution-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  color: #ffffff;
  stroke-width: 1.8;
  transition: color .25s, transform .25s;
}
.solution-card:hover .solution-icon {
  background: var(--grad);
  color: white;
}
.solution-card:hover .solution-icon svg { fill: none; color: white; transform: scale(1.06); }
.solution-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}
.solution-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.complete-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.complete-card {
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.complete-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.complete-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.complete-card:hover::before { transform: scaleX(1); }
.complete-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad);
  margin-bottom: 22px;
  box-shadow: var(--shadow-cyan);
}
.complete-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.complete-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
}
.complete-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.complete-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.complete-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ----- About + CTA ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.about-grid h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 14px 0 20px;
  color: #003362;
}
.about-grid p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #00363e;
}

.cta-card {
  padding: 38px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--grad-soft);
}
.cta-card > * { position: relative; }
.cta-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-card p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ----- FAQ ----- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all .25s;
}
.faq details[open] {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  color: var(--cyan);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s, background .25s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--grad);
  color: white;
}
.faq p {
  padding: 0 26px 22px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}

/* ----- Lead form ----- */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.lead-points {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.lead-points p {
  padding: 16px 18px;
  background: var(--light);
  border-left: 3px solid var(--cyan);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.lead-points strong { color: var(--navy); }

.lead-form {
  display: grid;
  gap: 16px;
  padding: 36px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 6px;
}
.lead-form label > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.lead-form input,
.lead-form select {
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--soft);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border .2s, background .2s;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: white;
  box-shadow: 0 0 0 4px rgba(23,195,154,.12);
}
.lead-form small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: stretch;
}
.contact-list {
  display: grid;
  gap: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: all .25s;
}
a.contact-item:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
a.contact-item:hover .contact-icon {
  background: var(--grad);
}
a.contact-item:hover .contact-icon svg {
  fill: none;
  color: white;
  transform: scale(1.06);
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #003362;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  color: var(--cyan);
  stroke-width: 1.8;
  transition: color .25s, transform .25s;
}
.contact-text strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-text > span {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.map-box {
  min-height: 460px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

/* ----- Footer ----- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img {
  width: 180px;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255,255,255,.7);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-col li {
  font-size: 14px;
  line-height: 1.5;
}
.footer-col a {
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan-bright); }

.footer-group {
  padding: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.group-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cyan-bright);
  margin-bottom: 6px;
}
.footer-group strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.footer-group p {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  line-height: 1.55;
}
.group-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-bright);
  transition: gap .2s;
}
.group-link:hover { gap: 10px; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-copy .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.21,.6,.35,1), transform .7s cubic-bezier(.21,.6,.35,1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .menu { gap: 18px; }
  .menu a { font-size: 13.5px; }
  .header-cta { padding: 0 18px; font-size: 12.5px; }
  .complete-grid { grid-template-columns: 1fr; }
  .rural-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    gap: 0;
    padding: 16px var(--gutter) 24px;
    background: white;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 24px 50px rgba(0,51,98,.12);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 49;
    visibility: hidden;
  }
  body.menu-open .menu {
    transform: translateY(0);
    visibility: visible;
  }
  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 15px;
    width: 100%;
  }
  .menu a:last-child { border-bottom: 0; }
  .menu a::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 50px; }
  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4/5;
  }
  .hero-trust { max-width: 100%; }

  .system-grid,
  .split,
  .about-grid,
  .lead-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { padding: 24px 22px 60px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .nav { height: 100px; padding-top: 8px; padding-bottom: 8px; }
  .brand img { width: 210px; }
  .menu {
    top: 100px;
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
  }
  .hero { padding: 30px 0 60px; }
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
  }
  .trust-divider { display: none; }
  .trust-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 0;
  }
  .trust-item strong { font-size: 22px; }
  .trust-item span { font-size: 10px; }

  .hero-visual { max-width: 360px; aspect-ratio: 3/4; }
  .hero-badge { left: -8px; padding: 10px 16px 10px 14px; }
  .hero-badge .badge-text strong { font-size: 12px; }
  .hero-badge .badge-text span { font-size: 10px; }
  .hero-spec { max-width: 180px; padding: 10px 12px; }
  .spec-1 { right: -8px; }
  .spec-2 { left: -8px; }

  .rural-grid,
  .solution-grid,
  .compare { grid-template-columns: 1fr; }

  .network-map { height: 380px; }
  .node { width: 92px; height: 46px; font-size: 11px; }
  .node-main { width: 110px; height: 56px; font-size: 12px; }

  .lead-form { padding: 26px 22px; }
  .highlight-box,
  .compare-card,
  .cta-card { padding: 26px 22px; }

  .map-box { min-height: 360px; }
  .map-box iframe { min-height: 360px; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-copy .container { flex-direction: column; text-align: center; gap: 4px; }
}

/* ----- Página Rural ----- */
.hero--page { padding-bottom: clamp(40px, 6vw, 70px); }

.breadcrumb {
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: var(--cyan);
  font-weight: 700;
}
.breadcrumb-sep {
  margin: 0 8px;
  opacity: .5;
}

.hero-grid--rural {
  grid-template-columns: 1.3fr .8fr;
  min-height: auto;
}
.hero-rural-card { margin-top: 0; }
.hero-rural-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
}
.hero-rural-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.check--gradient {
  background: var(--grad);
  color: white;
  flex-shrink: 0;
}
.check--gradient svg { stroke: #fff; }

@media (max-width: 900px) {
  .hero-grid--rural {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-rural-card { margin-top: 8px; }
  .hero-rural-list li { font-size: 14px; }
  .breadcrumb {
    font-size: 12.5px;
    margin-bottom: 18px;
    word-wrap: break-word;
  }
}

/* Print */
@media print {
  .header, .whatsapp-float, .scroll-progress, .footer { display: none; }
}


/* =========================================================
   CB TEC — Estilos v2.1 (novas seções)
   Segmentos · Poste Solar Inteligente · Soluções completas
   IP vs DVR · Especializados · Why · Breadcrumb · See Also
   ========================================================= */

/* ----- SEGMENTOS (8 cards) ----- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.segment-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.segment-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.segment-card:hover::before { opacity: 1; }
.segment-card > * { position: relative; z-index: 1; }
.segment-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.segment-icon svg {
  width: 24px;
  height: 24px;
}
/* Emoji-based icon (ex: 🚜 trator) — sem fundo gradiente para o emoji aparecer com cores naturais */
.segment-icon-emoji {
  background: transparent !important;
  width: 56px !important;
  height: 56px !important;
}
.emoji-icon {
  font-size: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(0, 51, 98, .18));
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
}
.segment-card h3 {
  font-size: 16px;
  margin-top: 4px;
}
.segment-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .segments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .segments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .segment-card { padding: 18px 16px; }
  .segment-card h3 { font-size: 15px; }
  .segment-card p { font-size: 13px; }
}
@media (max-width: 420px) {
  .segments-grid { grid-template-columns: 1fr; }
}

/* ----- POSTE SOLAR INTELIGENTE ----- */
.poste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}
.poste-col {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.poste-col-title {
  color: white;
  font-size: 22px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.poste-block {
  margin-bottom: 22px;
}
.poste-block:last-child {
  margin-bottom: 0;
}
.poste-block h4 {
  color: var(--cyan-bright);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  font-weight: 700;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  color: rgba(255,255,255,.92);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.check-list .check {
  background: var(--grad-light);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.apply-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 14px;
}
.apply-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: white;
  font-size: 15px;
  transition: all .2s ease;
}
.apply-list li:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
}
.apply-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.apply-list strong {
  color: var(--cyan-bright);
}

.poste-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
}
.poste-cta p {
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.poste-cta .btn {
  margin-bottom: 14px;
}
.link-secondary {
  display: inline-block;
  color: var(--cyan-bright);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(54,179,232,.4);
  padding-bottom: 2px;
  transition: all .2s ease;
}
.link-secondary:hover {
  border-bottom-color: var(--cyan-bright);
  border-bottom-style: solid;
}

@media (max-width: 900px) {
  .poste-grid { grid-template-columns: 1fr; gap: 20px; }
  .poste-col { padding: 22px 18px; }
  .poste-col-title { font-size: 19px; }
}

/* ----- SOLUÇÕES (cards completos) ----- */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.solution-card-full {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.solution-card-full:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.solution-card-full > header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}
.solution-card-full .solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-card-full .solution-icon svg {
  width: 26px;
  height: 26px;
}
.solution-card-full h3 {
  font-size: 22px;
  margin: 0;
}
.solution-card-full > header p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.5;
}

.solution-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.solution-blocks.single {
  grid-template-columns: 1fr;
}
.solution-blocks h4 {
  font-size: 13.5px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-blocks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.solution-blocks li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.solution-blocks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .solution-card-full { padding: 22px 18px; }
  .solution-card-full h3 { font-size: 19px; }
  .solution-blocks { grid-template-columns: 1fr; gap: 18px; }
}

/* ----- IP vs DVR (Comparativo) ----- */
.compare-table-wrap {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  /* overflow-x auto: entre 760px e 900px a tabela de 3 colunas era
     cortada por `overflow: hidden`, sem como rolar */
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table thead th {
  background: var(--soft);
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  border-bottom: 2px solid var(--border);
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
}
.compare-table .th-old {
  color: #c54040;
}
.compare-table .th-new {
  color: var(--blue);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background .15s ease;
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: var(--soft);
}
.compare-table td {
  padding: 14px 20px;
  vertical-align: middle;
  line-height: 1.4;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 28%;
}
.cell-bad {
  color: #8a4a4a;
  background: rgba(197,64,64,.04);
}
.cell-good {
  color: #1a6e3a;
  background: rgba(23,195,154,.06);
  font-weight: 500;
}

/* Mobile lista */
.compare-mobile {
  display: none;
  margin-top: 28px;
  gap: 16px;
}
.compare-mobile-col {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 2px solid;
}
.compare-bad {
  border-color: rgba(197,64,64,.25);
  background: rgba(197,64,64,.03);
}
.compare-good {
  border-color: var(--cyan);
  background: rgba(23,195,154,.04);
}
.compare-mobile-col h3 {
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.compare-bad h3 { color: #c54040; }
.compare-good h3 { color: var(--cyan); }
.compare-mobile-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.compare-mobile-col li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .compare-table-wrap { display: none; }
  .compare-mobile { display: grid; }
}

/* Reasons cards */
.compare-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.reason-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: all .25s ease;
}
.reason-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}
.reason-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.reason-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.reason-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .compare-reasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .compare-reasons { grid-template-columns: 1fr; }
}

/* Migration box */
.migration-box {
  margin-top: 36px;
  background: var(--grad);
  color: white;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}
.migration-icon {
  font-size: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.migration-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}
.migration-text h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 6px;
}
.migration-text p {
  color: rgba(255,255,255,.92);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.5;
}
.migration-box .btn {
  white-space: nowrap;
  background: white;
  color: var(--navy);
}
.migration-box .btn:hover {
  background: var(--soft);
}

@media (max-width: 760px) {
  .migration-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 24px 22px;
    justify-items: center;
  }
  .migration-text h3 { font-size: 18px; }
  /* Mostrar ícone no mobile com tamanho controlado (era gigante por causa do grid 1 coluna) */
  .migration-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }
  .migration-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* ----- ESPECIALIZADOS ----- */
.specialized-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
.specialized-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
}
.specialized-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.specialized-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}
.specialized-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-light);
  color: var(--navy);
  flex-shrink: 0;
}
.specialized-emoji svg {
  width: 30px;
  height: 30px;
}
.specialized-head h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.specialized-head p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
.specialized-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.specialized-blocks.single {
  grid-template-columns: 1fr;
}
.specialized-blocks h4 {
  font-size: 13.5px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  margin-bottom: 10px;
}
.specialized-blocks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.specialized-blocks li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.specialized-blocks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (max-width: 900px) {
  .specialized-blocks { grid-template-columns: 1fr; gap: 18px; }
  .specialized-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .specialized-emoji { width: 48px; height: 48px; border-radius: 12px; }
  .specialized-emoji svg { width: 26px; height: 26px; }
}

/* ----- WHY (Diferenciais) ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.why-card h3 {
  color: white;
  font-size: 17px;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ----- BREADCRUMB ----- */
.breadcrumb {
  background: var(--soft);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: .6;
}

/* Hero Inner (página interna) */
.hero-inner {
  min-height: auto;
  padding: 80px 0 60px;
}
.hero-inner-copy {
  max-width: 760px;
}
.hero-inner-copy .hero-title {
  font-size: clamp(32px, 5.5vw, 50px);
  margin-bottom: 16px;
}
.hero-inner-copy .hero-lead {
  margin-bottom: 24px;
}

/* ----- SEE ALSO (links na página rural) ----- */
.see-also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.see-also-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
  position: relative;
}
.see-also-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.see-also-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-light);
  color: var(--navy);
  flex-shrink: 0;
}
.see-also-emoji svg {
  width: 26px;
  height: 26px;
}
.see-also-card h3 {
  font-size: 17px;
  margin: 0;
}
.see-also-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.see-also-arrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .see-also-grid { grid-template-columns: 1fr; }
}

/* ----- AJUSTES NA SEÇÃO SOBRE / ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* CB TEC premium SVG icon system */
.premium-icon:not(.whatsapp-icon):not(.tractor-icon),
.segment-icon svg:not(.whatsapp-icon):not(.tractor-icon),
.solution-card-full .solution-icon svg:not(.whatsapp-icon):not(.tractor-icon),
.contact-icon svg:not(.whatsapp-icon):not(.tractor-icon),
.footer-social svg:not(.whatsapp-icon):not(.tractor-icon),
.whatsapp-float svg:not(.whatsapp-icon):not(.tractor-icon) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Trator: usa fill com currentColor (cor herda do gradient da .segment-icon = branca) */
.tractor-icon {
  fill: currentColor;
  color: #fff;
}
.tractor-icon path {
  fill: currentColor;
}
.segment-icon:not(.segment-icon-emoji), .solution-card-full .solution-icon, .contact-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 26px rgba(0, 51, 98, .16);
}
.segment-card:hover .segment-icon svg:not(.whatsapp-icon),
.solution-card-full:hover .solution-icon svg:not(.whatsapp-icon),
a.contact-item:hover .contact-icon svg:not(.whatsapp-icon),
.footer-social a:hover svg:not(.whatsapp-icon),
.whatsapp-float:hover svg:not(.whatsapp-icon) {
  color: #fff;
  transform: scale(1.07);
}
/* WhatsApp: hover só anima escala, sem mudar cor (mantém o verde do logo) */
.contact-icon:hover .whatsapp-icon,
.footer-social a:hover .whatsapp-icon,
.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.07);
}


/* Ajustes premium — ícones SVG e chamada de clique nos cards */
.segment-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.segment-more svg {
  width: 17px;
  height: 17px;
  transition: transform .25s ease;
}
.segment-card:hover .segment-more { color: var(--cyan); }
.segment-card:hover .segment-more svg { transform: translateX(3px) scale(1.05); }
.apply-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  color: var(--cyan-bright);
  flex: 0 0 42px;
  font-size: 0;
}
.apply-icon svg { width: 24px; height: 24px; }
.reason-icon,
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin: 0 auto 12px;
  font-size: 0;
}
.reason-icon { background: var(--grad-soft); color: var(--blue); }
.why-icon { background: rgba(255,255,255,.10); color: var(--cyan-bright); }
.reason-icon svg,
.why-icon svg { width: 28px; height: 28px; }
.reason-card:hover .reason-icon svg,
.why-card:hover .why-icon svg { transform: scale(1.07); }

/* Ícone WhatsApp: logo oficial verde (com fill nativo, sem stroke override) */
.whatsapp-icon,
.whatsapp-float .whatsapp-icon,
.contact-icon .whatsapp-icon,
.footer-social .whatsapp-icon {
  fill: initial !important;
  stroke: none !important;
}
.whatsapp-icon path {
  stroke: none;
}
/* Tamanhos por contexto */
.whatsapp-float .whatsapp-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.footer-social .whatsapp-icon,
.contact-icon .whatsapp-icon {
  width: 22px;
  height: 22px;
}
/* No botão verde flutuante: o logo aparece BRANCO sobre fundo verde */
.whatsapp-float .whatsapp-icon path {
  fill: #fff !important;
}
/* No card de contato (fundo azul escuro): só o ícone, em ciano (igual aos outros ícones de contato) */
.contact-icon .whatsapp-icon path {
  fill: var(--cyan) !important;
  transition: fill .25s;
}
/* Hover: fica branco igual aos outros ícones do card de contato */
a.contact-item:hover .contact-icon .whatsapp-icon path {
  fill: #fff !important;
}
a.contact-item:hover .contact-icon .whatsapp-icon {
  transform: scale(1.06);
  transition: transform .25s;
}
/* No footer social (fundo escuro): só o ícone, em branco (igual aos outros ícones do footer) */
.footer-social .whatsapp-icon path {
  fill: #fff !important;
}


/* ============================================================
   ÍCONES SVG — tabela comparativa (substituem ✅ ❌ 📼 📡)
   ============================================================ */
.th-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 8px;
}
.th-icon svg {
  width: 22px;
  height: 22px;
}
.th-old .th-icon svg { stroke: #c54040; }
.th-new .th-icon svg { stroke: var(--cyan); }

.cell-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
}
.cell-ico svg { width: 18px; height: 18px; }
.cell-good .cell-ico svg { stroke: #149c5a; }
.cell-bad  .cell-ico svg { stroke: #d83131; }

.li-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
}
.li-ico svg { width: 18px; height: 18px; }
.li-ico.good svg { stroke: #149c5a; }
.li-ico.bad  svg { stroke: #d83131; }

/* =========================================================
   MARCAS PARCEIRAS — Carrossel infinito
   ========================================================= */
.section-brands {
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-brands::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(23,195,154,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,51,98,.04) 0%, transparent 50%);
  pointer-events: none;
}

.brands-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.brands-head .kicker {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.brands-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.brands-head .text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brands-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Carrossel */
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

.brands-track {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: brandsScroll 32s linear infinite;
  align-items: center;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-item {
  flex: 0 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}

.brand-item:hover {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.06);
}

.brand-item img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

/* Ajustes finos por logo (algumas têm proporções muito diferentes) */
.brand-item img[alt*="Hikvision"]  { height: 38px; }
.brand-item img[alt*="Ubiquiti"]   { height: 40px; }
.brand-item img[alt*="UniFi"]      { height: 50px; }
.brand-item img[alt*="Omada"]      { height: 46px; }
.brand-item img[alt*="MikroTik"]   { height: 40px; }
.brand-item img[alt*="JFL"]        { height: 60px; }
/* Fallback (segundo conjunto duplicado, alt vazio) */
.brand-item[aria-hidden="true"] img { height: inherit; }

.brands-note {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: 14px;
  color: var(--muted-soft);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .brand-item { height: 50px; }
  .brand-item img[alt*="Hikvision"]  { height: 28px; }
  .brand-item img[alt*="Ubiquiti"]   { height: 30px; }
  .brand-item img[alt*="UniFi"]      { height: 38px; }
  .brand-item img[alt*="Omada"]      { height: 34px; }
  .brand-item img[alt*="MikroTik"]   { height: 30px; }
  .brand-item img[alt*="JFL"]        { height: 46px; }
  .brands-track { animation-duration: 26s; }
}

/* Acessibilidade: respeitar quem desativa animação */
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}


/* ===== OTIMIZAÇÕES PARA CONVERSÃO E GOOGLE ADS ===== */

/* Trust badges para social proof */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(23,195,154,.1), rgba(12,94,144,.08));
  border: 1px solid rgba(23,195,154,.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.trust-badge::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  color: white;
  font-size: 10px;
  font-weight: 900;
}

/* Seção de social proof / depoimentos */
.testimonial-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(23,195,154,.05) 0%, rgba(12,94,144,.03) 100%);
}

.testimonial-card {
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

/* =========================================================
   Banner de cookies (LGPD)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 -8px 30px rgba(0, 51, 98, .28);
  border-top: 3px solid var(--cyan);
  animation: cookieUp .35s ease-out;
}
.cookie-banner[hidden] { display: none; }

@keyframes cookieUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 16px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #dbe9f6;
}
.cookie-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.cookie-text a:hover { color: var(--cyan-bright); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn-cookie:hover { transform: translateY(-1px); }

.btn-cookie-accept {
  background: var(--grad-light);
  color: #fff;
  box-shadow: var(--shadow-cyan);
}
.btn-cookie-reject {
  background: transparent;
  color: #dbe9f6;
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn-cookie-reject:hover { border-color: #fff; color: #fff; }

@media (max-width: 640px) {
  .cookie-inner { justify-content: center; text-align: center; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1; }
}

/* =========================================================
   Paginas de texto legal (Politica de Privacidade etc.)
   ========================================================= */
.legal-hero {
  background: var(--grad);
  color: #fff;
  padding: clamp(90px, 14vw, 140px) 0 clamp(40px, 6vw, 64px);
}
.legal-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 44px); }
.legal-hero p { color: #cfe3f4; margin-top: 12px; max-width: 640px; }
.legal-hero .kicker { color: var(--cyan-bright); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding-block: clamp(40px, 7vw, 72px);
  color: var(--ink-soft);
}
.legal h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 18px; margin-top: 24px; margin-bottom: 8px; color: var(--blue); }
.legal p { margin-bottom: 14px; line-height: 1.7; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; line-height: 1.65; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }
.legal strong { color: var(--ink); }
.legal .legal-updated {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-weight: 700;
  color: var(--blue);
}
.legal-back:hover { color: var(--navy); }

.testimonial-author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}

.testimonial-author-role {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Urgência visual - badges de "Limitado" */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Melhorias para mobile - botões maiores */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 13px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }
  
  .trust-divider {
    width: 100%;
    height: 1px;
  }
}

/* Efeitos de hover para cards */
.segment-card,
.why-card,
.specialized-card {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.segment-card:hover,
.why-card:hover,
.specialized-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Melhorias para formulário de lead */
.lead-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

@media (max-width: 620px) {
  .lead-form { padding: 26px 22px; }
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.lead-form label span {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  /* 16px e obrigatorio: abaixo disso o Safari iOS da zoom automatico no focus */
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-color: var(--blue);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,94,144,.25);
}

/* Melhorias para why-card (mantém original, apenas aprimoramentos) */
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.why-card:hover .why-icon svg {
  transform: scale(1.1);
}

/* Animação de entrada para elementos reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Melhoria de contraste para acessibilidade */
@media (prefers-contrast: more) {
  .btn-primary {
    font-weight: 900;
    letter-spacing: 0.03em;
  }
  
  h1, h2, h3, h4 {
    font-weight: 900;
  }
}

/* Dark mode removido: o bloco anterior escurecia apenas o fundo do body,
   mas titulos e cards continuavam claros (contraste 1,3:1 = texto ilegivel).
   O site tem identidade clara — se um dia houver dark mode, precisa cobrir
   todos os tokens de cor, nao so o body. */

/* =========================================================
   TELACAM — pagina de produto (telacam.html)
   Usa os mesmos tokens do site (navy #003362 / cyan #17c39a).
   ========================================================= */

/* Botao com texto longo (CTAs de venda) — quebra linha no celular */
.btn-wrap {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  height: auto;
  padding: 16px 26px;
}
.btn-xl {
  min-height: 62px;
  font-size: 15.5px;
  padding: 16px 34px;
}

/* Grid de 3 colunas (passos "como funciona") */
.rural-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ----- Secao 2: a dor ----- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--border-soft);
  border-left: 3px solid #d83131;
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
}
.pain-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.pain-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.pain-item strong { color: var(--navy); font-weight: 800; }
.pain-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(216,49,49,.1);
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-x svg { width: 14px; height: 14px; stroke: #d83131; stroke-width: 3; }
.pain-note {
  margin-top: 26px;
  font-size: 15.5px;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

/* Frase de virada (a camera filma a pessoa / o TelaCam filma o sistema) */
.punch-line {
  margin-top: 32px;
  padding: 32px 34px;
  border-radius: var(--radius-lg);
  background: var(--grad);
  box-shadow: var(--shadow);
  text-align: center;
}
.punch-line p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  color: white;
}
.punch-line em { font-style: normal; color: var(--cyan-bright); }

/* ----- Secao 3: mock do mosaico do gravador ----- */
.dvr-mock {
  margin-top: 40px;
  padding: clamp(16px, 2.5vw, 26px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #04182c, #063053);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.dvr-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.dvr-mock-head > span {
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.55);
}
.dvr-mock-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  color: rgba(255,255,255,.8);
}
.dvr-mock-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5252;
  animation: pulse-urgency 2s ease-in-out infinite;
}
.dvr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.dvr-cell {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
  overflow: hidden;
}
.dvr-cell svg { width: 30px; height: 30px; }
.dvr-cell b { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.72); }
.dvr-cell.is-telacam {
  border-color: var(--cyan);
  background: linear-gradient(160deg, rgba(23,195,154,.24), rgba(23,195,154,.06));
  color: var(--cyan-bright);
  box-shadow: 0 0 0 1px rgba(23,195,154,.3), 0 12px 30px rgba(23,195,154,.18);
}
.dvr-cell.is-telacam b { color: white; }
.cell-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.65);
}
.dvr-cell.is-telacam .cell-tag { background: var(--cyan); color: white; }
.cell-time {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 10px;
  font-family: ui-monospace, 'Courier New', monospace;
  color: rgba(255,255,255,.45);
}
.dvr-mock-note {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* ----- Caixa centralizada (preco / garantia) ----- */
.box-center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.box-center .kicker { display: block; }
.price-line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

/* ----- Secao 6: quem instala ----- */
.maker-box {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(160deg, white, var(--light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.maker-box img { margin: 0 auto 20px; }
.maker-box p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.maker-box p:last-of-type { margin-bottom: 0; }
.maker-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.maker-links a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px dashed rgba(12,94,144,.4);
  padding-bottom: 2px;
  transition: all .2s ease;
}
.maker-links a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

/* ----- Secao 10: CTA final ----- */
.final-cta {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}
.final-cta .check-list {
  max-width: 540px;
  margin: 28px auto 32px;
  text-align: left;
}
.final-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

@media (max-width: 900px) {
  .rural-grid-3 { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dvr-grid { grid-template-columns: 1fr; }
  .punch-line { padding: 26px 20px; }
  .pain-item { padding: 18px; }
}

/* =========================================================
   MENU v2 (2026-07) — dropdown "Soluções" + selo NOVO
   ========================================================= */
.menu { align-items: center; }

/* Selo NOVO do TelaCam */
.badge-novo {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 7px 2px;
  border-radius: 7px;
  background: var(--cyan);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  vertical-align: 2px;
}

/* Item com dropdown */
.has-dropdown { position: relative; }
/* ponte invisível pra não perder o hover entre o item e a lista */
.has-dropdown::before {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}
.menu-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}
.menu-drop-toggle:hover { color: var(--cyan); }
.menu-drop-toggle .caret { transition: transform .25s ease; }
.has-dropdown:hover .caret,
.has-dropdown.open .caret { transform: rotate(180deg); }

.menu-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 214px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0,51,98,.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
.has-dropdown:hover .menu-drop,
.has-dropdown:focus-within .menu-drop,
.has-dropdown.open .menu-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.menu .menu-drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.menu .menu-drop a::after { display: none; }
.menu .menu-drop a:hover {
  background: rgba(23,195,154,.09);
  color: var(--cyan);
}

@media (max-width: 1080px) {
  .menu-drop-toggle { font-size: 13.5px; }
}

/* Mobile: grupo "Soluções" já aberto em lista, botões grandes de dedo */
@media (max-width: 900px) {
  .has-dropdown {
    position: static;
    width: 100%;
  }
  .has-dropdown::before { display: none; }
  .menu-drop-toggle {
    pointer-events: none;
    width: 100%;
    padding: 16px 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
  }
  .menu-drop-toggle .caret { display: none; }
  .menu-drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }
  .menu .menu-drop a {
    padding: 14px 0 14px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 15px;
  }
  .menu .menu-drop a:hover { background: none; }
  .menu .badge-novo { vertical-align: 1px; }
}

/* ===== AlertaCam: mock de conversa do bot (2026-07) ===== */
.chat-mock {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.chat-mock-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.chat-mock .chat-msg {
  margin: 12px 14px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 84%;
  width: fit-content;
}
.chat-mock .chat-me {
  margin-left: auto;
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
  border-bottom-right-radius: 4px;
}
.chat-mock .chat-bot {
  background: var(--soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-mock-note {
  padding: 2px 16px 14px;
  font-size: 11px;
  color: var(--muted-soft);
  text-align: center;
}

/* ---- Conversa animada estilo chat real (2026-07) ---- */
.chat-mock.chat-anim { display: flex; flex-direction: column; }
.chat-mock.chat-anim .chat-mock-note { margin-top: auto; }
.chat-anim.is-armed .chat-msg {
  opacity: 0;
  transform: translateY(14px) scale(.94);
  transition: opacity .38s ease, transform .42s cubic-bezier(.2, .9, .3, 1.15);
  will-change: opacity, transform;
}
.chat-anim.is-armed .chat-me { transform-origin: bottom right; }
.chat-anim.is-armed .chat-bot { transform-origin: bottom left; }
.chat-anim.is-armed .chat-msg.chat-show { opacity: 1; transform: none; }
.chat-time {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1;
  text-align: right;
  font-weight: 600;
  color: var(--muted-soft);
}
.chat-mock .chat-me .chat-time { color: rgba(255, 255, 255, .85); }
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 12px 14px;
  padding: 13px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  background: var(--soft);
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.chat-typing.chat-show { opacity: 1; transform: none; }
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--muted-soft);
  animation: chatTypingDot 1.1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-anim.is-armed .chat-msg { opacity: 1 !important; transform: none !important; transition: none; }
  .chat-typing { display: none !important; }
}

/* ===== AlertaCam: hero conversa + selos de app (2026-07) ===== */
.hero-alerta-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.app-badge svg { width: 21px; height: 21px; flex: none; }
.app-badge em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cyan);
  padding: 3px 8px;
  border-radius: 6px;
}
.app-badge em.opc { background: var(--muted-soft); }
.chat-foto {
  display: block;
  margin-bottom: 8px;
  padding: 18px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,51,98,.10), rgba(23,195,154,.14));
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-alerta-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-alerta-grid .chat-mock { width: 100%; }
}

/* =========================================================
   CORREÇÕES MOBILE (2026-07-23) — auditoria completa
   ========================================================= */
/* 1) Estouro horizontal na home: o select do formulário de
   orçamento forçava o grid além da tela do celular */
.lead-grid > * { min-width: 0; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* 2) Etiqueta dos canais no mock do DVR (TelaCam) estava 9.5px */
.cell-tag { font-size: 10.5px; }

@media (max-width: 900px) {
  /* 3) Alvos de toque maiores pra dedo */
  .footer-col ul li a { display: inline-block; padding: 8px 0; }
  .breadcrumb a { display: inline-block; padding: 8px 0; }
  .maker-links a { display: inline-block; padding: 9px 0; }
  .link-secondary { display: inline-block; padding: 9px 0; }
  .footer-copy a { display: inline-block; padding: 8px 0; }

  /* 4) Textos que caíam pra 10px no celular */
  .trust-item span { font-size: 11px; }
  .hero-badge .badge-text span { font-size: 11px; }
}

/* AlertaCam: nota "escolhe no plano" nos selos de app */
.app-badge-note {
  align-self: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}
