/**
 * AVCB Serviços — main.css
 * Sistema de design modular
 * 
 * ⚠️ TODAS AS VARIÁVEIS ESTÃO NO 0-root.css
 * Não adicionar variáveis aqui!
 */

/* ═══════════════════════════════════════════════════════════
   RESET GLOBAL (ÚNICO)
   ═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f-body, 'Segoe UI', system-ui, sans-serif);
  background-color: var(--c-bg, #f8f9fa);
  color: var(--c-text, #616161);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c-heading, #032C4D);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8em;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t, 0.2s ease);
}

a:hover {
  color: var(--c-cta, #FF4D00);
  text-decoration: underline;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

/* ═══════════════════════════════════════════════════════════
   ACESSIBILIDADE
   ═══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--c-cta, #FF4D00);
  outline-offset: 2px;
  border-radius: var(--r-sm, 8px);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT — CONTAINERS
   ═══════════════════════════════════════════════════════════ */
.container,
.b-container {
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin-inline: auto;
  padding-inline: var(--px, clamp(1rem, 4vw, 2rem));
}

.b-section {
  padding: var(--spacing-xl, 3rem) var(--px, clamp(1rem, 4vw, 2rem));
}

.b-section--lg {
  padding: var(--spacing-xxl, 5rem) var(--px, clamp(1rem, 4vw, 2rem));
}

.b-section--sm {
  padding: var(--spacing-lg, 2rem) var(--px, clamp(1rem, 4vw, 2rem));
}

/* ═══════════════════════════════════════════════════════════
   UTILITÁRIOS GERAIS
   ═══════════════════════════════════════════════════════════ */
.keywords-microdata {
  display: none;
}

.keyword-highlight {
  color: var(--c-cta, #FF4D00);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.keyword-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cta, #FF4D00), transparent);
  opacity: 0.3;
}

.seo-badge {
  display: inline-block;
  background: rgba(255, 77, 0, 0.1);
  color: var(--c-cta, #FF4D00);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--r-full, 9999px);
  margin-left: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   BOTÕES (btn)
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-md, 12px);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--t, 0.2s ease);
  white-space: nowrap;
}

.btn--red {
  background: var(--c-cta, #FF4D00);
  color: var(--gray-50, #ffffff);
}

.btn--red:hover {
  background: var(--c-cta-dark, #CC3D00);
  transform: translateY(-1px);
  box-shadow: var(--sh-fire, 0 8px 24px rgba(255, 77, 0, 0.4));
}

.btn--green {
  background: var(--c-wpp, #25D366);
  color: var(--gray-50, #ffffff);
}

.btn--green:hover {
  background: var(--c-wpp-hover, #25A653);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gray-200, #e0e0e0);
  color: var(--gray-700, #212121);
}

.btn--outline:hover {
  border-color: var(--c-cta, #FF4D00);
  color: var(--c-cta, #FF4D00);
}

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--gray-50, #ffffff);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--xl {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.btn--lg {
  padding: 0.75rem 1.5rem;
}

.btn--md {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.section-header,
.b-section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl, 3rem);
}

.section-title {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-heading, #032C4D);
}

.section-sub {
  margin-top: var(--spacing-md, 1.5rem);
  color: var(--gray-500, #616161);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-inline: auto;
}

.b-section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy-800, #02203D);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.b-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--fire-500, #FF4D00), var(--amber-300, #FFCE00));
  border-radius: 2px;
}

.b-section-header p {
  font-size: 1.1rem;
  color: var(--gray-500, #616161);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.b-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire-500, #FF4D00);
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════
   HEADER (HEADER ROOT) — COM CORREÇÃO DO MENU MOBILE
   ═══════════════════════════════════════════════════════════ */
.header-root {
  position: sticky;
  top: 0;
  z-index: 9000;
  width: 100%;
  font-family: var(--h-font, 'Segoe UI', sans-serif);
  will-change: transform;
}

.header-root.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.header-container {
  width: 100%;
  max-width: var(--h-container, 1320px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.header-topbar {
  background: var(--h-navy, #01172E);
  height: var(--h-topbar-h, 40px);
  position: relative;
  overflow: hidden;
}

.header-topbar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 77, 0, 0.12) 40%);
  pointer-events: none;
}

.header-topbar .header-container {
  height: 100%;
  justify-content: space-between;
  gap: 16px;
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.header-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--h-white-dim, rgba(255, 255, 255, 0.82));
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-right: 16px;
}

.header-trust li i {
  color: var(--h-green, #25D366);
  font-size: 11px;
}

.header-trust-sep {
  border-left: 1px solid var(--h-white-faint, rgba(255, 255, 255, 0.18));
  padding-left: 16px;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--r-full, 9999px);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all var(--h-t1, 0.18s ease);
}

.header-btn--wa {
  background: var(--h-green, #25D366);
  color: #fff;
  box-shadow: var(--h-wa-shadow, 0 4px 20px rgba(37, 211, 102, 0.4));
}

.header-btn--wa:hover {
  background: var(--h-green-h, #25A653);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.header-btn--tel {
  background: transparent;
  color: var(--h-white-dim, rgba(255, 255, 255, 0.82));
  border: 1px solid var(--h-white-faint, rgba(255, 255, 255, 0.18));
}

.header-btn--tel:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.header-main {
  background: var(--h-navy-deep, #010C1A);
  height: var(--h-main-h, 72px);
  border-bottom: 3px solid var(--h-orange, #FF4D00);
  position: relative;
}

.header-main::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--h-orange, #FF4D00), #FF8C00, var(--h-blue, #1a3a6d));
}

.header-main .header-container {
  height: 100%;
  gap: 20px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: block;
  line-height: 0;
  transition: opacity var(--h-t1, 0.18s ease);
}

.header-logo a:hover {
  opacity: 0.88;
}

.header-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.header-tagline {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  border-left: 2px solid var(--h-orange, #FF4D00);
  padding-left: 12px;
  max-width: 160px;
  flex-shrink: 0;
  display: none;
}

.header-tagline strong {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm, 8px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 10001;
  transition: background var(--h-t1, 0.18s ease), border-color var(--h-t1, 0.18s ease);
}

.header-hamburger:hover {
  background: rgba(255, 77, 0, 0.15);
  border-color: var(--h-orange, #FF4D00);
}

.header-hbg-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1)),
    opacity var(--h-t1, 0.18s ease),
    top var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
  transform-origin: center;
}

.header-hbg-top {
  top: 12px;
}

.header-hbg-mid {
  top: 20px;
}

.header-hbg-bot {
  top: 28px;
}

.header-hamburger.is-open .header-hbg-top {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.header-hamburger.is-open .header-hbg-mid {
  opacity: 0;
  width: 0;
}

.header-hamburger.is-open .header-hbg-bot {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.header-seo-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.header-nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.header-nav-link,
.header-nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 14px;
  color: var(--h-white-dim, rgba(255, 255, 255, 0.82));
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  position: relative;
  transition: color var(--h-t1, 0.18s ease), background var(--h-t1, 0.18s ease);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--h-font, 'Segoe UI', sans-serif);
}

.header-nav-link::after,
.header-nav-drop-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--h-orange, #FF4D00);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
}

.header-nav-link:hover,
.header-nav-drop-toggle:hover,
.header-nav-item--dropdown.is-open>.header-nav-drop-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.header-nav-link:hover::after,
.header-nav-drop-toggle:hover::after,
.header-nav-item--dropdown.is-open>.header-nav-drop-toggle::after {
  transform: scaleX(1);
}

.header-nav-chevron {
  font-size: 10px;
  color: var(--h-orange, #FF4D00);
  transition: transform var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
  flex-shrink: 0;
}

.header-nav-item--dropdown.is-open>.header-nav-drop-toggle .header-nav-chevron {
  transform: rotate(180deg);
}

.header-cta {
  background: var(--h-orange, #FF4D00) !important;
  color: #fff !important;
  padding: 0 20px !important;
  height: 42px !important;
  border-radius: var(--r-sm, 8px) !important;
  margin-left: 10px;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.4);
  transition: all var(--h-t1, 0.18s ease) !important;
  align-self: center;
}

.header-cta::after {
  display: none !important;
}

.header-cta i {
  font-size: 13px;
}

.header-cta:hover {
  background: var(--h-orange-h, #FF6B1A) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.5) !important;
  color: #fff !important;
}

.header-drop {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 370px;
  background: #fff;
  border-radius: var(--r-md, 12px);
  border-top: 3px solid var(--h-orange, #FF4D00);
  box-shadow: var(--h-drop-shadow, 0 16px 48px rgba(0, 0, 0, 0.22));
  padding: 6px 0;
  list-style: none;
  z-index: 9100;
  opacity: 0;
  transition: opacity var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1)), transform var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
  pointer-events: none;
}

.header-drop::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 5px solid var(--h-orange, #FF4D00);
}

.header-nav-item--dropdown.is-open>.header-drop,
.header-nav-has-drop.is-open>.header-drop {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (hover: hover) {
  .header-nav-has-drop:hover>.header-drop {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .header-nav-has-drop:hover>.header-nav-drop-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .header-nav-has-drop:hover>.header-nav-drop-toggle::after {
    transform: scaleX(1);
  }

  .header-nav-has-drop:hover>.header-nav-drop-toggle .header-nav-chevron {
    transform: rotate(180deg);
  }
}

.header-drop-item {
  border-bottom: 1px solid rgba(224, 224, 224, 0.55);
}

.header-drop-item:last-child {
  border-bottom: none;
}

.header-drop-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  background: #fff;
  text-decoration: none;
  transition: background var(--h-t1, 0.18s ease);
  width: 100%;
}

.header-drop-link:hover {
  background: #EEF4FF;
}

.header-drop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--r-sm, 8px);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform var(--h-t1, 0.18s ease);
}

.header-drop-link:hover .header-drop-icon {
  transform: scale(1.08);
}

.header-drop-icon--fire {
  background: rgba(255, 77, 0, 0.12);
  color: var(--fire-500, #FF4D00);
}

.header-drop-icon--alert {
  background: rgba(244, 67, 54, 0.12);
  color: #d32f2f;
}

.header-drop-icon--ok {
  background: rgba(40, 167, 69, 0.12);
  color: #1a7a32;
}

.header-drop-icon--inspect {
  background: rgba(5, 80, 127, 0.12);
  color: var(--navy-400, #05507F);
}

.header-drop-icon--install {
  background: rgba(26, 58, 109, 0.12);
  color: var(--navy-500, #1a3a6d);
}

.header-drop-icon--extintor {
  background: rgba(230, 81, 0, 0.12);
  color: #E65100;
}

.header-drop-icon--ltcat {
  background: rgba(40, 167, 69, 0.12);
  color: #1a7a32;
}

.header-drop-icon--medicao {
  background: rgba(5, 80, 127, 0.12);
  color: var(--navy-400, #05507F);
}

.header-drop-icon--sst {
  background: rgba(26, 58, 109, 0.12);
  color: var(--navy-500, #1a3a6d);
}

.header-drop-icon--training {
  background: rgba(255, 77, 0, 0.12);
  color: var(--fire-500, #FF4D00);
}

.header-drop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.header-drop-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  transition: color var(--h-t1, 0.18s ease);
}

.header-drop-link:hover .header-drop-title {
  color: var(--navy-500, #1a3a6d);
}

.header-drop-desc {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500, #616161);
  line-height: 1.3;
}

/* OVERLAY (FUNDO ESCURO) */
.header-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 8900;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
}

.header-overlay.is-visible {
  display: block;
  opacity: 1;
}

.header-wa-float {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--h-green, #25D366);
  color: #fff;
  font-family: var(--h-font, 'Segoe UI', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 20px 12px 16px;
  border-radius: var(--r-full, 9999px);
  box-shadow: var(--h-wa-shadow, 0 4px 20px rgba(37, 211, 102, 0.4));
  text-decoration: none;
  transition: all var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
  animation: hWaBounce 4s ease-in-out infinite;
}

.header-wa-float i {
  font-size: 22px;
}

.header-wa-float:hover {
  background: var(--h-green-h, #25A653);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes hWaBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  8% {
    transform: translateY(-6px);
  }

  16% {
    transform: translateY(0);
  }

  24% {
    transform: translateY(-3px);
  }

  32% {
    transform: translateY(0);
  }
}

.header-breadcrumb {
  background: var(--h-gray-soft, #f8f9fa);
  padding: 6px 24px;
  font-size: 12px;
  color: var(--h-gray-mid, #616161);
}

.header-breadcrumb:empty {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-900, #01172E);
  min-height: clamp(320px, 55vh, 680px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(26, 58, 109, 0.8) 0%, rgba(1, 23, 46, 0.95) 70%);
  z-index: 0;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__flame-glow {
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) var(--px, clamp(1rem, 4vw, 2rem));
  max-width: 800px;
}

.hero__slider {
  position: relative;
  width: 100%;
}

.hero__slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.hero__slide--active {
  display: block;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.2rem;
}

.hero__badge--alert {
  background: rgba(255, 77, 0, 0.2);
  color: var(--fire-300, #FF8C47);
  border: 1px solid rgba(255, 77, 0, 0.4);
}

.hero__badge--blue {
  background: rgba(91, 164, 217, 0.2);
  color: #5BA4D9;
  border: 1px solid rgba(91, 164, 217, 0.4);
}

.hero__badge--orange {
  background: rgba(255, 179, 0, 0.15);
  color: var(--amber-300, #FFCE00);
  border: 1px solid rgba(255, 206, 0, 0.3);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__accent,
.hero__title-accent {
  color: var(--fire-400, #FF6B1A);
}

.hero__light,
.hero__title-light {
  color: rgba(255, 255, 255, 0.75);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 620px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  border-radius: var(--r-full, 9999px);
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--fire-500, #FF4D00);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 77, 0, 0.45);
  transition: all 0.25s var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1));
  text-decoration: none;
}

.hero__cta:hover {
  background: var(--fire-400, #FF6B1A);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 77, 0, 0.55);
  text-decoration: none;
}

.hero__cta--fire {
  animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 77, 0, 0);
  }
}

.hero__trust {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem var(--px, clamp(1rem, 4vw, 2rem));
  position: relative;
  z-index: 2;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero__dot--active {
  background: var(--fire-500, #FF4D00);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 1.25rem 0;
  background: var(--gray-100, #f8f9fa);
  border-bottom: 1px solid var(--gray-200, #e0e0e0);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.stat-num {
  display: block;
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-cta, #FF4D00);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500, #616161);
  margin-top: 0.1rem;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--gray-300, #CCCCCC);
}

/* ═══════════════════════════════════════════════════════════
   V-HERO (PÁGINAS INTERNAS)
   ═══════════════════════════════════════════════════════════ */
.v-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
  padding: var(--spacing-xxl, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.v-hero__inner {
  max-width: var(--max-w, 1200px);
  margin-inline: auto;
  padding-inline: var(--px, clamp(1rem, 4vw, 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.v-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full, 9999px);
  color: #ff9999;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.v-hero__h1 {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white, #ffffff);
  margin-bottom: 1rem;
}

.v-hero__h1 em {
  color: var(--red-light, #FF3333);
  font-style: normal;
}

.v-hero__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-bottom: 1.5rem;
}

.v-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.v-hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.78rem;
  font-weight: 600;
}

.v-hero__icon {
  font-size: 8rem;
  color: rgba(255, 77, 0, 0.2);
  user-select: none;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════ */
.services-section {
  padding: var(--spacing-xxl, 5rem) 0;
}

.services-section--dark {
  background: var(--navy-900, #01172E);
  color: var(--white, #ffffff);
}

.services-section--dark .section-title {
  color: var(--white, #ffffff);
}

.services-section--dark .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.services-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-lg, 16px);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow var(--t, 0.2s ease), transform var(--t, 0.2s ease);
}

.service-card:hover {
  box-shadow: var(--sh-lg, 0 16px 40px rgba(0, 0, 0, 0.15));
  transform: translateY(-3px);
}

.service-card--sst {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white, #ffffff);
}

.service-card--sst .service-card__title a {
  color: var(--white, #ffffff);
}

.service-card--sst .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card__badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--c-cta, #FF4D00);
  color: var(--white, #ffffff);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 var(--r-sm, 8px) var(--r-sm, 8px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--c-cta, #FF4D00);
  color: var(--white, #ffffff);
  border-radius: var(--r-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__title a {
  color: var(--gray-900, #000000);
}

.service-card__title a:hover {
  color: var(--c-cta, #FF4D00);
}

.service-card__desc {
  color: var(--gray-500, #616161);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-500, #25D366);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--t, 0.2s ease);
}

.service-card__cta:hover {
  color: var(--green-600, #25A653);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════ */
.process-section {
  padding: var(--spacing-xxl, 5rem) 0;
  background: var(--gray-100, #f8f9fa);
}

.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-lg, 16px);
  padding: 1.25rem;
  transition: var(--t, 0.2s ease);
}

.process-step:hover {
  border-color: var(--c-cta, #FF4D00);
  box-shadow: var(--sh-sm, 0 4px 12px rgba(0, 0, 0, 0.08));
}

.process-step__num {
  min-width: 36px;
  height: 36px;
  background: var(--c-cta, #FF4D00);
  color: var(--white, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.process-step__icon {
  font-size: 1.2rem;
  color: var(--c-cta, #FF4D00);
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 24px;
  text-align: center;
}

.process-step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.process-step__desc {
  color: var(--gray-500, #616161);
  font-size: 0.9rem;
}

.process-cta {
  text-align: center;
  margin-top: var(--spacing-xl, 3rem);
}

/* ═══════════════════════════════════════════════════════════
   DIFFERENTIALS
   ═══════════════════════════════════════════════════════════ */
.diffs-section {
  padding: var(--spacing-xxl, 5rem) 0;
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.diff-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--r-lg, 16px);
  background: var(--gray-100, #f8f9fa);
  border: 1px solid var(--gray-200, #e0e0e0);
}

.diff-item__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-cta, #FF4D00), var(--c-cta-dark, #CC3D00));
  color: var(--white, #ffffff);
  border-radius: var(--r-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.diff-item__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.diff-item__desc {
  color: var(--gray-500, #616161);
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════════════════════ */
.compare-section {
  padding: var(--spacing-xxl, 5rem) 0;
  background: var(--gray-100, #f8f9fa);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg, 16px);
  box-shadow: var(--sh-md, 0 8px 24px rgba(0, 0, 0, 0.12));
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white, #ffffff);
  font-size: 0.92rem;
}

.compare-table th {
  background: var(--navy-900, #01172E);
  color: var(--white, #ffffff);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-100, #f8f9fa);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: var(--gray-50, #ffffff);
}

.compare-note {
  margin-top: 1rem;
  color: var(--gray-500, #616161);
  font-size: 0.9rem;
}

.compare-note a {
  color: var(--c-cta, #FF4D00);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--spacing-xxl, 5rem) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-lg, 16px);
  overflow: hidden;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--gray-900, #000000);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--t, 0.2s ease);
}

.faq-toggle:hover {
  background: var(--gray-100, #f8f9fa);
}

.faq-toggle[aria-expanded="true"] {
  background: var(--gray-100, #f8f9fa);
  color: var(--c-cta, #FF4D00);
}

.faq-icon {
  transition: transform 0.2s;
  color: var(--gray-400, #9e9e9e);
  flex-shrink: 0;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--c-cta, #FF4D00);
}

.faq-answer {
  padding: 0 1.25rem;
}

.faq-answer:not([hidden]) {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-100, #f8f9fa);
}

.faq-answer p {
  color: var(--gray-600, #343a40);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CITIES
   ═══════════════════════════════════════════════════════════ */
.cities-section {
  padding: var(--spacing-xl, 3rem) 0;
  background: var(--gray-100, #f8f9fa);
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.cities-grid a {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-full, 9999px);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700, #212121);
  transition: var(--t, 0.2s ease);
}

.cities-grid a:hover {
  border-color: var(--c-cta, #FF4D00);
  color: var(--c-cta, #FF4D00);
  background: rgba(255, 77, 0, 0.04);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--c-cta-dark, #CC3D00), #1a0505);
  padding: var(--spacing-xl, 3rem) 0;
}

.cta-banner__inner {
  max-width: var(--max-w, 1200px);
  margin-inline: auto;
  padding-inline: var(--px, clamp(1rem, 4vw, 2rem));
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner__icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.cta-banner__body {
  flex: 1;
  min-width: 200px;
}

.cta-banner__title {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white, #ffffff);
  line-height: 1.2;
}

.cta-banner__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.cta-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER (REDESENHADO V2)
   ═══════════════════════════════════════════════════════════ */
.footer-root {
  background: radial-gradient(circle at 20% 20%, var(--footer-bg-start, #0a1420), var(--footer-bg-end, #03060a));
  color: var(--footer-text-secondary, rgba(255, 255, 255, 0.75));
  position: relative;
  border-top: 4px solid var(--footer-accent, #FF4D00);
  overflow: hidden;
}

.footer-root::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--footer-accent, #FF4D00);
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
  border-radius: 50%;
}

.footer-root::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--footer-phone, #3498db);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
  border-radius: 50%;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-root>.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-col {
  background: var(--footer-glass, rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--footer-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--footer-radius, 16px);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: all var(--footer-transition, 0.3s ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.footer-col:hover {
  background: var(--footer-glass-hover, rgba(255, 255, 255, 0.07));
  border-color: var(--footer-border-hover, rgba(255, 77, 0, 0.3));
  transform: translateY(-6px);
  box-shadow: var(--footer-shadow, 0 20px 60px rgba(0, 0, 0, 0.5));
}

.footer-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-accent, #FF4D00), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--footer-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.footer-col:hover::after {
  transform: scaleX(1);
}

.footer-title h3 {
  color: var(--footer-text-primary, #ffffff);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-title h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--footer-accent, #FF4D00);
  border-radius: 2px;
  transition: width 0.3s var(--footer-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.footer-col:hover .footer-title h3::after {
  width: 100%;
}

/* FT BRAND BANNER */
.ft-brand-banner {
  background: linear-gradient(135deg, var(--navy-950, #010C1A) 0%, var(--navy-900, #01172E) 40%, rgba(255, 77, 0, 0.06) 100%);
  border-top: 4px solid var(--fire-500, #FF4D00);
  border-bottom: 1px solid rgba(255, 77, 0, 0.2);
  padding: 2.5rem 24px 2.2rem;
  position: relative;
  overflow: hidden;
}

.ft-brand-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 77, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 77, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ft-brand-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ft-brand-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ft-brand-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 280px;
}

.ft-brand-icon {
  position: relative;
  flex-shrink: 0;
}

.ft-brand-icon__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-500, #FF4D00), var(--fire-700, #CC2200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  animation: ft-iconPulse 3.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4), 0 8px 32px rgba(255, 77, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

@keyframes ft-iconPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4);
  }

  30% {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 28px 8px rgba(255, 77, 0, 0.25);
  }

  60% {
    transform: scale(1.04) rotate(2deg);
    box-shadow: 0 0 18px 4px rgba(255, 77, 0, 0.18);
  }
}

.ft-brand-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 0, 0.25);
  animation: ft-iconPulse 3.5s ease-in-out infinite 0.3s;
}

.ft-brand-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 0, 0.12);
  animation: ft-iconPulse 3.5s ease-in-out infinite 0.6s;
}

.ft-brand-icon__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--amber-400, #FFB300);
  border-radius: 50%;
  border: 2px solid var(--navy-950, #010C1A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--navy-950, #010C1A);
  z-index: 3;
  animation: ft-badgePulse 2.2s ease-in-out infinite;
}

@keyframes ft-badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.6);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(255, 77, 0, 0);
  }
}

.ft-brand-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.ft-brand-text h2 em {
  font-style: normal;
  color: var(--fire-500, #FF4D00);
}

.ft-brand-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.ft-brand-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ft-stat {
  text-align: center;
  min-width: 72px;
  animation: ft-countIn 0.6s var(--footer-ease, cubic-bezier(0.4, 0, 0.2, 1)) both;
}

@keyframes ft-countIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ft-stat:nth-child(2) {
  animation-delay: 0.1s;
}

.ft-stat:nth-child(3) {
  animation-delay: 0.2s;
}

.ft-stat:nth-child(4) {
  animation-delay: 0.3s;
}

.ft-stat__num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--fire-500, #FF4D00);
  line-height: 1;
}

.ft-stat__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}

.ft-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ft-brand-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-shrink: 0;
}

.ft-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  border: none;
  cursor: pointer;
}

.ft-brand-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ft-brand-btn--wpp {
  background: var(--green-500, #25D366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.ft-brand-btn--wpp:hover {
  background: var(--green-600, #25A653);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.ft-brand-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ft-brand-btn--outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.ft-brand-urgency {
  font-size: 0.72rem;
  color: var(--amber-400, #FFB300);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  font-weight: 600;
}

/* SERVICE LIST ITEMS */
.ft-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft-service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.15s, transform 0.18s, padding-left 0.18s;
  border-radius: var(--r-sm, 8px);
  color: var(--footer-text-secondary, rgba(255, 255, 255, 0.75));
}

.ft-service-item:last-child {
  border-bottom: none;
}

.ft-service-item:hover {
  padding-left: 0.5rem;
  color: #fff;
  background: rgba(255, 77, 0, 0.07);
  text-decoration: none;
  transform: translateX(3px);
}

.ft-service-item__ico {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--r-sm, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.15s;
}

.ft-service-item:hover .ft-service-item__ico {
  transform: scale(1.12) rotate(-3deg);
}

.ft-ico--fire {
  background: rgba(255, 77, 0, 0.15);
  color: var(--fire-500, #FF4D00);
}

.ft-ico--navy {
  background: rgba(10, 61, 98, 0.25);
  color: var(--navy-300, #4A8AB2);
}

.ft-ico--green {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-500, #25D366);
}

.ft-ico--amber {
  background: rgba(255, 179, 0, 0.15);
  color: var(--amber-400, #FFB300);
}

.ft-service-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.ft-service-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft-service-item__desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft-service-item__arrow {
  font-size: 0.65rem;
  color: rgba(255, 77, 0, 0.5);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.2s;
}

.ft-service-item:hover .ft-service-item__arrow {
  color: var(--fire-500, #FF4D00);
  transform: translateX(3px);
}

/* CITIES GRID */
.ft-cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
}

.ft-city-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--r-sm, 8px);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  white-space: nowrap;
  overflow: hidden;
}

.ft-city-link:hover {
  background: rgba(255, 77, 0, 0.1);
  color: #fff;
  transform: translateX(2px);
  text-decoration: none;
}

.ft-city-link__ico {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--fire-500, #FF4D00);
  flex-shrink: 0;
  transition: transform 0.2s, background 0.15s;
}

.ft-city-link:hover .ft-city-link__ico {
  background: var(--fire-500, #FF4D00);
  color: #fff;
  transform: scale(1.15);
}

.ft-city-link--capital .ft-city-link__ico {
  background: rgba(255, 179, 0, 0.15);
  color: var(--amber-400, #FFB300);
}

.ft-city-link--capital {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* FOOTER CONTACT AREA */
.ft-contact-icon-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-contact-icon-main {
  position: relative;
  flex-shrink: 0;
}

.ft-contact-icon-main__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-500, #FF4D00) 0%, var(--fire-700, #CC2200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  animation: ft-iconShake 5s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(255, 77, 0, 0.35);
}

@keyframes ft-iconShake {

  0%,
  80%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-12deg) scale(1.1);
  }

  30% {
    transform: rotate(12deg) scale(1.15);
  }

  50% {
    transform: rotate(-7deg) scale(1.08);
  }

  70% {
    transform: rotate(7deg);
  }
}

.ft-contact-icon-main__sub {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-500, #25D366);
  border: 2px solid var(--navy-950, #010C1A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  animation: ft-badgePulse 2s ease-in-out infinite;
}

.ft-contact-icon-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.ft-contact-icon-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* SOCIAL BUTTONS */
.ft-social-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.ft-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
}

.ft-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  color: #fff;
  text-decoration: none;
}

.ft-social-btn--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.ft-social-btn--li:hover {
  background: #0077b5;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.35);
}

.ft-social-btn--yt:hover {
  background: #ff0000;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

/* NORMAS CHIPS */
.ft-normas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.ft-norma-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full, 9999px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.ft-norma-chip:hover {
  background: rgba(255, 77, 0, 0.12);
  border-color: rgba(255, 77, 0, 0.3);
  color: var(--fire-400, #FF6B1A);
}

.ft-norma-chip i {
  color: var(--fire-500, #FF4D00);
  font-size: 0.58rem;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  border-top: none;
  margin-top: 0;
  position: relative;
}

.footer-bottom::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--fire-500, #FF4D00) 20%, var(--amber-400, #FFB300) 50%, var(--fire-500, #FF4D00) 80%, transparent 100%);
  background-size: 200% auto;
  animation: ft-shimmer 4s linear infinite;
}

@keyframes ft-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.footer-bottom-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 0.85rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.55));
}

.footer-copyright strong {
  color: var(--footer-text-primary, #ffffff);
}

.footer-crea {
  margin-top: 0.3rem;
}

.footer-crea .highlight {
  color: var(--footer-accent, #FF4D00);
  font-weight: 700;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.55));
  transition: color var(--footer-transition, 0.3s ease);
}

.footer-legal-link:hover {
  color: var(--footer-accent, #FF4D00);
}

.separator {
  color: var(--footer-border, rgba(255, 255, 255, 0.08));
}

.footer-cookie-btn {
  font-size: 0.8rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.55));
  cursor: pointer;
  transition: color var(--footer-transition, 0.3s ease);
}

.footer-cookie-btn:hover {
  color: var(--footer-accent, #FF4D00);
}

.footer-lgpd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.55));
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: var(--r-full, 9999px);
  border: 1px solid var(--footer-border, rgba(255, 255, 255, 0.08));
}

.footer-lgpd i {
  color: var(--footer-accent, #FF4D00);
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 3px solid var(--amber-400, #FFB300);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: var(--f-body, 'Segoe UI', sans-serif);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner:not(.hidden) {
  animation: slideInUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.cookie-banner.hiding {
  animation: slideOutDown 0.5s ease forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 250px;
}

.cookie-content p {
  margin: 0;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--amber-400, #FFB300);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.cookie-content a:hover {
  color: #ffb347;
  border-bottom-color: #ffb347;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-cookie-primary,
.btn-cookie-secondary {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm, 8px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.btn-cookie-primary {
  background: linear-gradient(135deg, var(--amber-400, #FFB300) 0%, #e67e22 100%);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-cookie-primary:hover {
  background: linear-gradient(135deg, #ffb347 0%, var(--amber-400, #FFB300) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.btn-cookie-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE
   ═══════════════════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, #0a0a0a, #200000);
  padding: var(--spacing-xl, 3rem) 0;
}

.service-hero__icon {
  font-size: 2.5rem;
  color: var(--red-light, #FF3333);
  margin-bottom: 1rem;
}

.service-hero__h1 {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white, #ffffff);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.service-hero__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 60ch;
  margin-bottom: 1.25rem;
}

.service-hero__points {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-hero__points li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-hero__points .fa-check {
  color: var(--green-500, #25D366);
}

.service-content {
  padding: var(--spacing-xl, 3rem) 0;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.service-article h2 {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900, #000000);
  margin: 1.5rem 0 0.75rem;
}

.service-article h2:first-child {
  margin-top: 0;
}

.service-article p {
  color: var(--gray-600, #343a40);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content-list {
  margin-bottom: 1rem;
  padding-left: 0;
}

.content-list li {
  color: var(--gray-600, #343a40);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100, #f8f9fa);
}

.content-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-cta, #FF4D00);
  font-weight: 700;
}

.sidebar-card {
  background: var(--gray-100, #f8f9fa);
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-lg, 16px);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.sidebar-card--cta {
  background: linear-gradient(135deg, var(--c-cta-dark, #CC3D00), #1a0505);
  color: var(--white, #ffffff);
  border-color: transparent;
}

.sidebar-card--cta h3 {
  color: var(--white, #ffffff);
}

.sidebar-card--cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700, #212121);
  font-size: 0.88rem;
  transition: color var(--t, 0.2s ease);
}

.sidebar-links a:hover {
  color: var(--c-cta, #FF4D00);
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGE
   ═══════════════════════════════════════════════════════════ */
.city-hero {
  background: linear-gradient(135deg, #0a0a0a, #200000);
  padding: var(--spacing-xl, 3rem) 0;
}

.city-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.city-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: #ff9999;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.city-hero__h1 {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white, #ffffff);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.city-hero__sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 55ch;
  margin-bottom: 1.25rem;
}

.city-hero__points {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.city-hero__points li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.city-hero__points .fa-check {
  color: var(--green-500, #25D366);
}

.city-hero__icon {
  font-size: 6rem;
  color: rgba(255, 77, 0, 0.2);
  text-align: center;
  position: relative;
}

.city-hero__icon-city {
  display: block;
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
}

.city-hero__service-tag {
  background: rgba(255, 77, 0, 0.25);
  color: #ff9999;
  padding: 0.1rem 0.5rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.75rem;
  font-weight: 700;
}

.city-content {
  padding: var(--spacing-xl, 3rem) 0;
}

.city-content__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.city-article h2 {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1.5rem 0 0.75rem;
  color: var(--gray-900, #000000);
}

.city-article h2:first-child {
  margin-top: 0;
}

.city-article p {
  color: var(--gray-600, #343a40);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.related-cities {
  padding: var(--spacing-xl, 3rem) 0;
  background: var(--gray-100, #f8f9fa);
}

.related-cities__title {
  font-family: var(--f-display, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.related-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-cities__list a {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: var(--r-full, 9999px);
  font-size: 0.83rem;
  color: var(--gray-700, #212121);
  transition: var(--t, 0.2s ease);
}

.related-cities__list a:hover {
  border-color: var(--c-cta, #FF4D00);
  color: var(--c-cta, #FF4D00);
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 0.75rem 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.82rem;
}

.breadcrumb__item a {
  color: var(--gray-500, #616161);
  transition: color var(--t, 0.2s ease);
}

.breadcrumb__item a:hover {
  color: var(--c-cta, #FF4D00);
}

.breadcrumb__sep {
  color: var(--gray-300, #CCCCCC);
}

[aria-current="page"] {
  color: var(--gray-700, #212121);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   URGENCY BADGE
   ═══════════════════════════════════════════════════════════ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 0.4rem 1rem;
  border-radius: var(--r-sm, 8px);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  animation: blink-border 2.5s ease-in-out infinite;
}

@keyframes blink-border {

  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.4);
  }

  50% {
    border-color: rgba(239, 68, 68, 0.85);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
  }
}

/* ═══════════════════════════════════════════════════════════
   B-UTILITÁRIOS
   ═══════════════════════════════════════════════════════════ */
.b-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full, 9999px);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--navy-50, #E6F2FF);
  color: var(--navy-500, #1a3a6d);
  border: 1px solid var(--navy-100, #D6E8F5);
}

.b-tag.c-fogo {
  background: var(--fire-100, #FFE4D6);
  color: var(--fire-600, #CC3D00);
  border-color: var(--fire-300, #FF8C47);
}

.b-tag.c-verde {
  background: var(--green-100, #E8F5E9);
  color: var(--green-700, #1B8A40);
  border-color: var(--green-300, #A5F9C4);
}

.b-grid {
  display: grid;
  gap: 1.5rem;
}

.b-grid.col-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.b-grid.col-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.b-grid.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.b-card {
  background: #fff;
  border-radius: var(--r-lg, 16px);
  overflow: hidden;
  box-shadow: var(--sh-sm, 0 4px 12px rgba(0, 0, 0, 0.08));
  border: 1px solid var(--gray-200, #e0e0e0);
  transition: transform 0.3s var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1)), box-shadow 0.3s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.b-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg, 0 16px 40px rgba(0, 0, 0, 0.15));
}

.b-usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.b-usp-list li {
  font-size: 0.88rem;
  color: var(--gray-500, #616161);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.b-usp-list li i {
  color: var(--success-500, #28a745);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════════════════
   V-BUTTONS E V-ICONS
   ═══════════════════════════════════════════════════════════ */
.v-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1)), box-shadow 0.28s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.v-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.v-btn:hover::after {
  animation: shimmer 0.65s ease forwards;
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%) skewX(-20deg);
  }

  100% {
    transform: translateX(220%) skewX(-20deg);
  }
}

.v-btn:hover {
  transform: translateY(-4px) scale(1.02);
  text-decoration: none;
}

.v-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.v-btn i {
  font-size: 1.05em;
  transition: transform 0.28s var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.v-btn:hover i {
  transform: translateX(4px) scale(1.15);
}

.v-btn--fire {
  background: var(--grad-cta-anim, linear-gradient(45deg, #CC2200, #FF4D00, #FFB300, #FF4D00, #CC2200));
  background-size: 300% 300%;
  color: #fff;
  box-shadow: 0 6px 28px rgba(255, 77, 0, 0.42);
  animation: pulseFire 3.2s ease-in-out infinite, gradShift 6s ease infinite;
}

@keyframes pulseFire {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.55);
  }

  60% {
    box-shadow: 0 0 0 18px rgba(255, 77, 0, 0);
  }
}

@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.v-btn--green {
  background: var(--grad-green, linear-gradient(45deg, #1B8A40 0%, #25D366 55%, #00e676 100%));
  background-size: 250% 250%;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.38);
}

.v-btn--green:hover {
  box-shadow: var(--glow-green, 0 0 32px rgba(37, 211, 102, 0.4), 0 8px 24px rgba(37, 211, 102, 0.2));
  background-position: 100% 0;
}

.v-btn--navy {
  background: var(--grad-navy, linear-gradient(45deg, #01172E 0%, #0A3D62 55%, #4A8AB2 100%));
  background-size: 250% 250%;
  color: #fff;
  box-shadow: 0 6px 28px rgba(10, 61, 98, 0.38);
}

.v-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.v-icon--hero {
  width: 140px;
  height: 140px;
  border-radius: 36px;
  font-size: 4rem;
}

.v-icon--fire {
  background: var(--grad-fire, linear-gradient(45deg, #CC2200 0%, #FF4D00 45%, #FFB300 100%));
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 77, 0, 0.32);
}

.v-icon--float {
  animation: iconFloat 3.4s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  35% {
    transform: translateY(-12px) scale(1.04) rotate(-4deg);
  }

  65% {
    transform: translateY(-6px) scale(1.02) rotate(2deg);
  }
}

/* ═══════════════════════════════════════════════════════════
   SNIPPETS AI OVERVIEW
   ═══════════════════════════════════════════════════════════ */
.snippet-ai {
  font-family: var(--f-display, 'Inter', sans-serif);
  max-width: 1200px;
  margin: 2rem auto;
  background: var(--snip-bg, #ffffff);
  border-radius: var(--snip-r, 20px);
  box-shadow: var(--snip-shadow, 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02));
  overflow: hidden;
  border: 1px solid var(--snip-border, #e2e8f0);
}

.snippet-header-ai {
  background: var(--snip-grad, linear-gradient(135deg, #1e293b, #0f172a));
  color: #fff;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.snippet-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.snippet-icon-large {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.snippet-header-text h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.snippet-header-text h2 span {
  color: var(--amber-300, #FFCE00);
  font-weight: 800;
}

.snippet-ai-overview {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--snip-border, #e2e8f0);
}

.snippet-ai-answer {
  background: #fff;
  border-radius: var(--snip-r-sm, 12px);
  padding: 1.8rem;
  border-left: 5px solid var(--snip-accent, #FF4D00);
  box-shadow: var(--snip-shadow, 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02));
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e293b;
}

.snippet-grid-ai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 2.5rem;
}

.snippet-card-ai {
  background: #fff;
  border-radius: var(--snip-r-sm, 12px);
  padding: 1.8rem;
  box-shadow: var(--snip-shadow, 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02));
  border: 1px solid var(--snip-border, #e2e8f0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.snippet-card-ai:hover {
  transform: translateY(-5px);
  box-shadow: var(--snip-shadow-hov, 0 20px 30px -10px rgba(0, 0, 0, 0.1));
}

.snippet-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--snip-accent, #FF4D00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.snippet-card-ai:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   QUICK NAV
   ═══════════════════════════════════════════════════════════ */
.quick-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-full, 9999px);
  box-shadow: var(--sh-sm, 0 4px 12px rgba(0, 0, 0, 0.08));
  border: 1px solid var(--gray-200, #e0e0e0);
  margin: 2rem auto;
  max-width: fit-content;
  position: relative;
  z-index: 10;
}

.quick-nav__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fire-500, #FF4D00);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-nav__scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.quick-nav__scroll::-webkit-scrollbar {
  display: none;
}

.quick-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--gray-100, #f8f9fa);
  color: var(--navy-700, #032C4D);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-full, 9999px);
  border: 1px solid var(--gray-200, #e0e0e0);
  white-space: nowrap;
  transition: all var(--t, 0.2s ease);
  text-decoration: none;
}

.quick-nav__link:hover {
  background: var(--fire-100, #FFE4D6);
  color: var(--fire-600, #CC3D00);
  border-color: var(--fire-200, #FFB899);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.12);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .header-tagline {
    display: block;
  }
}

@media (max-width: 1024px) {

  .header-nav-link,
  .header-nav-drop-toggle {
    padding: 0 10px;
    font-size: 11.5px;
  }

  .header-cta {
    padding: 0 14px !important;
    margin-left: 6px;
  }

  .footer-root>.footer-container {
    gap: 1.5rem;
  }

  .footer-col {
    padding: 1.5rem 1.2rem;
  }

  .faq-rapido-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-root>.footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .ft-brand-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ft-brand-ctas {
    flex-direction: row;
    width: 100%;
  }

  .ft-brand-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--h-navy-deep, #010C1A);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 9500;
    transform: translateX(100%);
    transition: transform var(--h-t2, 0.28s cubic-bezier(0.4, 0, 0.2, 1));
    overflow-y: auto;
    padding-top: 0;
    margin-left: 0;
    display: flex;
  }

  .header-nav.is-open {
    transform: translateX(0);
    display: flex;
  }

  .header-nav-list {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    padding: 8px 0 24px;
  }

  .header-nav-item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav-link,
  .header-nav-drop-toggle {
    height: 50px;
    padding: 0 20px;
    font-size: 13px;
    width: 100%;
    justify-content: space-between;
  }

  .header-nav-link::after,
  .header-nav-drop-toggle::after {
    display: none;
  }

  .header-drop {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-left: 3px solid var(--h-orange, #FF4D00);
    background: rgba(255, 255, 255, 0.04) !important;
    padding: 4px 0 !important;
    min-width: auto !important;
    margin-left: 16px;
  }

  .header-drop::before {
    display: none;
  }

  .header-nav-has-drop.is-open>.header-drop {
    display: block;
  }

  .v-hero__inner,
  .city-hero__inner {
    grid-template-columns: 1fr;
  }

  .v-hero__icon,
  .city-hero__icon {
    display: none;
  }

  .service-content__grid,
  .city-content__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar__inner {
    gap: 0.5rem;
  }

  .stat-div {
    display: none;
  }

  .footer-root>.footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col:last-child {
    grid-column: unset;
  }

  .cookie-container {
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .quick-nav {
    max-width: 100%;
    border-radius: var(--r-xl, 24px);
    padding: 1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .quick-nav__scroll {
    width: 100%;
    padding: 0.2rem 0.2rem 0.5rem 0.2rem;
  }

  .titulo {
    padding: 2.5rem var(--px, clamp(1rem, 4vw, 2rem));
  }

  .titulo__deco {
    display: none;
  }

  .titulo__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-rapido-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid-3,
  .faq-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ft-brand-banner {
    padding: 2rem 16px 1.75rem;
  }

  .ft-brand-icon__ring {
    width: 66px;
    height: 66px;
    font-size: 1.8rem;
  }

  .ft-brand-stats {
    gap: 0.75rem;
  }

  .ft-stat__num {
    font-size: 1.4rem;
  }

  .ft-brand-btn {
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
  }

  .ft-cities-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .header-btn-text {
    display: none;
  }

  .v-hero__actions {
    flex-direction: column;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero {
    min-height: 300px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero__cta {
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
  }

  .footer-city-list {
    grid-template-columns: 1fr;
  }

  .footer-contact-btn {
    padding: 10px 12px;
  }

  .faq-rapido-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid-3,
  .faq-grid-4 {
    grid-template-columns: 1fr;
  }

  .ft-cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .snippet-header-ai,
  .snippet-ai-overview,
  .snippet-grid-ai,
  .snippet-process-ai,
  .snippet-faq-ai,
  .snippet-footer-ai {
    padding: 1.5rem;
  }
}

@media print {

  .header-root,
  .footer-root,
  .cookie-banner,
  .v-btn,
  .v-urgencia,
  .v-cta,
  .header-wa-float {
    display: none !important;
  }

  .v-hero {
    min-height: auto;
    background: none;
    color: #000;
  }

  .footer-root {
    background: #fff;
    color: #000;
    padding: 2rem 0;
  }
}

/* ANIMAÇÕES GLOBAIS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLL REVEAL */
.vr {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.62s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)), transform 0.62s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

.vr--left {
  transform: translateX(-26px);
}

.vr--right {
  transform: translateX(26px);
}

.vr.on {
  opacity: 1;
  transform: none;
}

.vr-d1 {
  transition-delay: 0.08s;
}

.vr-d2 {
  transition-delay: 0.16s;
}

.vr-d3 {
  transition-delay: 0.24s;
}