/* ============================================================
   AGN Extintores — STYLE.CSS (Hover Fix & Vertical Contact List)
   ============================================================ */

:root {
  --primary: #C8262C;
  --primary-hover: #A31B20;
  
  --navy-dark: #0F172A;
  --navy: #1E293B;
  --navy-light: #334155;

  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --border: #E2E8F0;

  --text: #334155;
  --text-dark: #0F172A;
  --text-muted: #64748B;

  --wa: #25D366;
  --wa-hover: #1DA851;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);

  --container: 1180px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- RESET & BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-narrow { max-width: 840px; }

.text-center { text-align: center; }

/* ---------- BARRA DE PROGRESSO DE SCROLL ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 1000;
  width: 100%;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #FF5964;
  transition: width 0.1s linear;
}

/* ---------- BOTÕES EXECUTIVOS & PÍLULA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: var(--primary);
  color: #FFF;
}
.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFF;
}

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

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--navy-dark);
  color: #94A3B8;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 4px;
}

.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.topbar-item:hover { color: #FFF; }
.topbar-item svg { width: 15px; height: 15px; }

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.header-logo {
  height: 68px;
  width: auto;
  max-height: 72px;
  transition: height 0.2s ease;
}
.header.is-scrolled .header-logo {
  height: 56px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-nav-header { display: none; }

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--navy-light);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover, .nav-link.is-active {
  color: var(--primary);
  background: rgba(200, 38, 44, 0.06);
}

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

.header-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 38, 44, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
}

/* ---------- HERO SLIDER PROFISSIONAL ---------- */
.hero {
  position: relative;
  background: var(--navy-dark);
  color: #FFF;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 540px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding-block: 80px;
  z-index: 1;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transform: scale(1.05);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.is-active .slide-bg img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.76) 60%, rgba(15, 23, 42, 0.45) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF5964;
  margin-bottom: 16px;
}

.kicker-dot {
  width: 8px; height: 8px;
  background: #FF5964;
  border-radius: 50%;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.slide-title .h-line { display: block; }
.slide-title em { font-style: normal; color: #FF5964; }

.slide-text {
  font-size: 1.125rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 32px;
}

.slide-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Setas e Dots do Hero */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot-item {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot-item.is-active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ---------- BARRA DE DIFERENCIAIS AUTÊNTICOS ---------- */
.diferenciais {
  background: #FFF;
  border-bottom: 1px solid var(--border);
  padding-block: 32px;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.dif-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #FFF;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.dif-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200, 38, 44, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dif-icon svg { width: 24px; height: 24px; }

.dif-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.975rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.dif-text span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ---------- EPIC REVEAL ANIMATIONS ---------- */
.epic-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.epic-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   ESTÁGIO DE ANIMAÇÃO DO SELO EXECUTIVO (FUNDO CLARO)
   ============================================================ */
.fire-combat-stage-light {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-anim-svg-light {
  width: 130px;
  height: 130px;
  overflow: visible;
  animation: fireCombatLoopLight 10s infinite;
}

@keyframes fireCombatLoopLight {
  0% { opacity: 0; transform: scale(0.3); }
  8% { opacity: 1; transform: scale(1.1); }
  20% { transform: scale(1.2) rotate(-2deg); }
  32% { transform: scale(1.3) rotate(3deg); opacity: 1; }
  40% { transform: scale(0.6); opacity: 0.6; }
  44% { transform: scale(0); opacity: 0; }
  100% { opacity: 0; transform: scale(0); }
}

@keyframes flameFlickerWild {
  0%, 100% { transform: translateY(0) scaleY(1) rotate(0deg); }
  25% { transform: translateY(-8px) scaleY(1.15) rotate(-4deg); }
  50% { transform: translateY(-3px) scaleY(0.92) rotate(3deg); }
  75% { transform: translateY(-10px) scaleY(1.2) rotate(-2deg); }
}

.wild-flame {
  transform-origin: 100px 145px;
  animation: flameFlickerWild 0.6s ease-in-out infinite alternate;
}

.flame-1 { animation-delay: 0.1s; }
.flame-2 { animation-delay: 0.25s; }
.flame-3 { animation-delay: 0.4s; }

@keyframes sparkRise {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-60px) scale(0); opacity: 0; }
}

.spark { animation: sparkRise 1.2s ease-out infinite; }
.spark-1 { animation-delay: 0.2s; }
.spark-2 { animation-delay: 0.5s; }
.spark-3 { animation-delay: 0.8s; }

.fire-glow-light {
  fill: rgba(239, 68, 68, 0.2);
  filter: blur(12px);
  animation: fireGlowPulseLight 0.8s ease-in-out infinite alternate;
}
@keyframes fireGlowPulseLight {
  from { opacity: 0.4; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.25); }
}

/* Spray de CO2 partículas */
.co2-cloud-spray {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  animation: co2SprayBlast 10s infinite;
}

@keyframes co2SprayBlast {
  0%, 34% { opacity: 0; transform: translateX(50px) scale(0.5); }
  37% { opacity: 1; transform: translateX(0) scale(1.1); }
  42% { opacity: 0.8; transform: translateX(-20px) scale(1.4); }
  46% { opacity: 0; transform: translateX(-40px) scale(1.6); }
  100% { opacity: 0; }
}

.p-cloud {
  position: absolute;
  background: rgba(203, 213, 225, 0.7);
  border-radius: 50%;
  filter: blur(6px);
}
.p1 { width: 50px; height: 50px; top: 40px; right: 40px; }
.p2 { width: 70px; height: 70px; top: 60px; right: 80px; }
.p3 { width: 60px; height: 60px; top: 30px; right: 110px; }
.p4 { width: 80px; height: 80px; top: 50px; right: 60px; }

/* SELO EXECUTIVO DE SEGURANÇA E EXTINTOR */
.firefighter-hero-robust {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  animation: firefighterRobustEnter 10s infinite;
}

@keyframes firefighterRobustEnter {
  0%, 40% { opacity: 0; transform: translateY(40px) scale(0.7); }
  45% { opacity: 1; transform: translateY(0) scale(1.05); }
  48% { transform: translateY(0) scale(1); }
  94% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(20px) scale(0.8); }
}

.firefighter-robust-svg {
  width: 140px;
  height: 140px;
}

/* Badge de Vitória Executive */
.extinguished-badge-light {
  position: absolute;
  bottom: 12px;
  background: var(--navy-dark);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  z-index: 7;
  animation: victoryBadgePopLight 10s infinite;
}

@keyframes victoryBadgePopLight {
  0%, 46% { opacity: 0; transform: translateY(15px) scale(0.6); }
  50% { opacity: 1; transform: translateY(0) scale(1.1); }
  54%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(10px) scale(0.8); }
}

/* ============================================================
   DUAS FILAS COMPACTAS COM ROTAÇÃO INFINITA & PADDING SEM CORTE
   ============================================================ */
.dual-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding-block: 8px 16px; /* Evita corte no hover */
}

.services-row-header {
  padding-inline: 10px;
}

.row-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.services-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 8px 12px; /* Margem extra interna para hover seguro */
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-block: 4px;
}

.marquee-left .marquee-track {
  animation: marqueeLoopLeft 22s linear infinite;
}
.marquee-right .marquee-track {
  animation: marqueeLoopRight 24s linear infinite;
}

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

@keyframes marqueeLoopLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeLoopRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* CARDS COMPACTOS COM HOVER PERFEITO SEM CORTE */
.compact-service-card {
  flex: 0 0 240px;
  width: 240px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.compact-service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.compact-img-box {
  width: 100%;
  height: 125px;
  overflow: hidden;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.compact-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.compact-service-card:hover .compact-img-box img {
  transform: scale(1.08);
}

.compact-svg {
  width: 110px;
  height: 110px;
  transition: transform 0.3s ease;
}

.compact-service-card:hover .compact-svg {
  transform: scale(1.08);
}

.compact-service-card h4 {
  font-family: var(--font-head);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 14px;
  line-height: 1.35;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- SEÇÕES EXECUTIVAS ---------- */
.section {
  padding-block: 84px;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}

/* Empresa Section */
.empresa-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.empresa-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 28px;
}

.feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(200, 38, 44, 0.1);
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feat-item strong { display: block; color: var(--text-dark); font-size: 1rem; }
.feat-item p { font-size: 0.9rem; color: var(--text-muted); }

.empresa-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.empresa-card-side {
  display: flex;
  justify-content: center;
}

.seal-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 380px;
  width: 100%;
}

.seal-box h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.seal-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.seal-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.metric span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- PRODUTOS (CARROSSEL ULTRA SUAVE & RÁPIDO) ---------- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.c-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-arrow:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}
.c-arrow-left { left: -18px; }
.c-arrow-right { right: -18px; }

.c-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
}

.c-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-product {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #F1F5F9;
}

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

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

.badge-inmetro {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy-dark);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dot-indicator.is-active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ---------- LICENCIAMENTO AVCB / CLCB ---------- */
.lic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lic-card {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.lic-header {
  background: var(--navy-dark);
  color: #FFF;
  padding: 28px 32px;
}
.lic-header-accent { background: var(--navy); }

.lic-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FF5964;
  margin-bottom: 8px;
}

.lic-header h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #FFF;
  line-height: 1.3;
}

.lic-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lic-body p {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.lic-list li {
  display: flex;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text);
}
.lic-list span { color: var(--primary); font-weight: 800; }

/* ---------- BANNER CORPORATIVO ---------- */
.banner-cta {
  background: var(--navy-dark);
  color: #FFF;
  padding-block: 54px;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.banner-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 8px;
}

.banner-text p {
  color: #94A3B8;
  max-width: 640px;
  font-size: 1.05rem;
}

/* ---------- ACCORDION ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.acc-item[open] {
  border-color: var(--primary);
}

.acc-title {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
}

.acc-content {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- CONTATO & MAPA LARGURA TOTAL ---------- */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contato-info-vertical {
  height: 100%;
}

.contact-v-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
  justify-content: center;
}

.c-v-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-v-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(200, 38, 44, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-v-icon svg { width: 22px; height: 22px; }

.c-v-text {
  display: flex;
  flex-direction: column;
}

.c-v-label {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.c-v-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: normal;
  text-decoration: none;
  transition: color 0.15s ease;
}
.c-v-val:hover { color: var(--primary); }

.contato-map-full {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.contato-map-full iframe { width: 100%; height: 100%; border: 0; }

.contato-form {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contato-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.f-group { margin-bottom: 18px; }

.f-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.f-group input, .f-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-alt);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.f-group input:focus, .f-group textarea:focus {
  border-color: var(--primary);
  background: #FFF;
}

.f-group input.is-invalid, .f-group textarea.is-invalid {
  border-color: var(--primary);
  background: #FFF5F5;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding-top: 60px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { height: 48px; margin-bottom: 16px; }

.footer-brand p {
  max-width: 380px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-head);
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #FFF; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px;
  font-size: 0.825rem;
  text-align: center;
}

/* ---------- BOTÃO WHATSAPP FLUTUANTE COM PULSO ---------- */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--wa);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waPulse 2.4s infinite;
  z-index: 99;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  background: var(--wa-hover);
}

.wa-float svg { width: 32px; height: 32px; fill: #FFF; }

/* ---------- RESPONSIVIDADE & MOBILE POLISH ---------- */
@media (max-width: 992px) {
  .hero-slider, .slide { min-height: 480px; }
  .empresa-grid, .contato-grid, .lic-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .card-product { flex: 0 0 calc((100% - 24px) / 2); }
  .banner-inner { flex-direction: column; text-align: center; }
  .compact-service-card { flex: 0 0 200px; width: 200px; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .nav-toggle { display: flex; }

  /* Mobile Drawer Nav Slide In */
  .nav {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100vh;
    background: #FFF;
    flex-direction: column;
    padding: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: stretch;
    gap: 12px;
  }

  .nav.is-open {
    right: 0;
  }

  .mobile-overlay.is-open {
    display: block;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
  }

  .mobile-logo { height: 44px; }
  .mobile-close { font-size: 1.4rem; color: var(--navy); padding: 4px 8px; }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .hero-arrow-left { left: 10px; }
  .hero-arrow-right { right: 10px; }
  .c-arrow-left { left: -10px; }
  .c-arrow-right { right: -10px; }
}

@media (max-width: 640px) {
  .section { padding-block: 56px; }
  .card-product { flex: 0 0 100%; }
  .slide-title { font-size: 2rem; }
  .slide-text { font-size: 1rem; }
  .contato-map-full { height: 280px; }
}
