/* ==========================================================================
   SANTOS INSPEÇÃO - FOLHA DE ESTILOS PRINCIPAL
   Design: Industrial Precision & High Conversion
   Cores: Navy Blueprint (#071224), Dourado Técnico (#D4A017), Verde Ação (#25D366)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & VARIÁVEIS GLOBAIS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta Primária */
  --bg-darkest: #050B14;
  --bg-dark: #0A1628;
  --bg-card: #0F1F38;
  --bg-card-hover: #142847;
  --bg-card-light: #1A3156;
  
  /* Acentos de Marca (da logo) */
  --gold: #D4A017;
  --gold-hover: #EAB326;
  --gold-glow: rgba(212, 160, 23, 0.25);
  --gold-light: #FDF3D8;
  
  /* Cores de Ação & Status (Verde Corporativo Sofisticado) */
  --whatsapp: #1E8551;
  --whatsapp-hover: #167043;
  --whatsapp-glow: rgba(30, 133, 81, 0.22);
  --orange: #FF6B00;
  --blue-accent: #1E6091;
  
  /* Tipografia & Tons Neutros */
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  /* Bordas e Linhas Técnicas */
  --border-tech: rgba(212, 160, 23, 0.2);
  --border-tech-bright: rgba(212, 160, 23, 0.6);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  /* Tipografia */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Alturas de Header */
  --topbar-height: 38px;
  --header-height: 74px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 10px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

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

/* Fundo com grid sutil de engenharia */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   2. COMPONENTES VISUAIS & UTILITÁRIOS
   -------------------------------------------------------------------------- */
.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid var(--border-tech);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.hero-title-block {
  display: block;
}

.badge-tech::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.65;
}

.center-text {
  text-align: center;
}
.center-text .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.center-text .section-tag {
  padding-left: 0;
}
.center-text .section-tag::before {
  display: none;
}

.highlight-gold {
  color: var(--gold);
}

/* Linha divisora técnica */
.tech-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 160, 23, 0.3) 30%, rgba(212, 160, 23, 0.3) 70%, transparent 100%);
  margin: 0;
  position: relative;
}

.tech-divider::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 11px;
  background: var(--bg-darkest);
  padding: 0 10px;
}

/* --------------------------------------------------------------------------
   3. BOTÕES DE ALTA CONVERSÃO
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 112, 67, 0.35);
  color: #FFFFFF;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--bg-darkest);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   4. TOPBAR INFORMATIVA (CONFIANÇA & CONTATO RÁPIDO)
   -------------------------------------------------------------------------- */
.topbar {
  background: #03070D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
  height: var(--topbar-height);
  position: relative;
  z-index: 1001;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--topbar-height);
}

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

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

.topbar-item svg {
  color: var(--gold);
  width: 14px;
  height: 14px;
}

.topbar-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .topbar-left {
    display: none;
  }
  .topbar-content {
    justify-content: center;
  }
}

.main-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 18, 36, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  background: rgba(5, 12, 24, 0.98);
  height: 64px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--border-tech);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  color: var(--gold);
}

.brand-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Botão Hambúrguer Mobile */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Drawer Menu Mobile */
.mobile-menu-drawer {
  display: none;
}

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
  }

  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 4px;
  }

  .brand-logo img {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .btn-header-cta {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-header-cta .btn-text-desktop {
    display: none;
  }

  .btn-header-cta svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  
  .mobile-menu-drawer {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #050B14;
    border-bottom: 2px solid var(--gold);
    padding: 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    z-index: 1100;
    overflow-y: auto;
  }
  
  .mobile-menu-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold);
    padding-left: 4px;
  }
  
  .mobile-drawer-contact {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-drawer-wa {
    width: 100%;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    text-align: left;
  }

  .btn-drawer-wa svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .drawer-wa-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .drawer-wa-text strong {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 700;
  }

  .drawer-wa-text span {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION DE ALTA CONVERSÃO
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--topbar-height));
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.56) contrast(1.12) blur(4px);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(15, 31, 56, 0.35) 0%, rgba(5, 11, 20, 0.76) 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin: 18px 0 20px;
}

.hero-title .title-accent {
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 31, 56, 0.7);
  border: 1px solid var(--border-tech);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 30px;
  width: 100%;
}

.hero-cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding-left: 2px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid var(--border-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-trust-icon svg {
  width: 18px;
  height: 18px;
}

.hero-trust-text {
  font-size: 0.82rem;
  line-height: 1.25;
  color: var(--text-muted);
}

.hero-trust-text strong {
  display: block;
  color: var(--text-white);
  font-weight: 700;
}

/* Card Rápido de Conversão no Hero (Lado Direito) */
.hero-card-box {
  background: rgba(15, 31, 56, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-tech);
  border-top: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-card-header {
  margin-bottom: 22px;
}

.hero-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.hero-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-card-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.hero-card-feat svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-card-cta {
  width: 100%;
}

.hero-card-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card-box {
    max-width: 500px;
  }
}

/* --------------------------------------------------------------------------
   7. BARRA DE AUTORIDADE / STATUS TÉCNICO
   -------------------------------------------------------------------------- */
.authority-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}

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

.auth-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.auth-stat-icon svg {
  width: 22px;
  height: 22px;
}

.auth-stat-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}

.auth-stat-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .authority-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   8. SEÇÃO DE SERVIÇOS TÉCNICOS INDUSTRIAIS
   -------------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background: var(--bg-darkest);
}

.services-header-wrap {
  margin-bottom: 50px;
}

.services-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--gold);
  padding: 36px 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-tech-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.service-box-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.service-box-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--border-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-box-icon svg {
  width: 26px;
  height: 26px;
}

.service-box-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

.service-box-title span {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.service-items-clean {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.service-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.service-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item-row svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item-row strong {
  color: var(--text-light);
  font-weight: 600;
}

.service-box-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}

.service-btn-action:hover {
  color: var(--text-white);
  gap: 12px;
}

.service-btn-action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-box:hover .service-btn-action svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-catalog {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   9. SEÇÃO DE NORMAS REGULAMENTADORAS (COMPLIANCE & RISCO ZERO)
   -------------------------------------------------------------------------- */
.compliance-section {
  padding: 90px 0;
  background: var(--bg-dark);
  position: relative;
}

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

.compliance-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 22px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.nr-card:hover {
  border-color: var(--gold);
}

.nr-tag-badge {
  background: var(--gold);
  color: var(--bg-darkest);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 6px 12px;
  flex-shrink: 0;
  border-radius: 2px;
  letter-spacing: -0.02em;
}

.nr-info h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.nr-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   10. GALERIA INTERATIVA COM FOTOS REAIS
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-darkest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  height: 290px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.gallery-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.gallery-card-caption {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.gallery-card-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid var(--border-tech);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 13, 0.94);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border: 1px solid var(--border-tech);
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--text-white);
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   11. SEÇÃO POR QUE NOS ESCOLHER (DIFERENCIAIS & STATS)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.diferencial-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.diferencial-item:hover {
  border-color: var(--border-tech);
  transform: translateX(6px);
}

.dif-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-tech);
}

.dif-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.dif-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stats-counter-box {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}

.counter-item {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-val {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-lbl {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   12. SEÇÃO DE ATENDIMENTO REGIONAL & MAPA
   -------------------------------------------------------------------------- */
.coverage-section {
  padding: 100px 0;
  background: var(--bg-darkest);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.cities-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.city-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 2px;
}

.city-pill.main-city {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
}

.contact-card-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-top: 4px solid var(--gold);
  padding: 36px 32px;
}

.contact-company-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-badge-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-item span, .contact-info-item a {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact-info-item a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   13. CTA FINAL (FECHAMENTO DE CONVERSÃO)
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, #0F2342 0%, #050B14 100%);
  border-top: 1px solid var(--border-tech);
  border-bottom: 1px solid var(--border-tech);
  text-align: center;
  position: relative;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.final-cta-title span {
  color: var(--gold);
}

.final-cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   14. FOOTER COMPLETO
   -------------------------------------------------------------------------- */
.site-footer {
  background: #03070E;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   15. BOTÃO WHATSAPP FLUTUANTE PERSISTENTE (DESKTOP)
   -------------------------------------------------------------------------- */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.float-whatsapp-badge {
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid var(--border-tech);
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  animation: float-tag 3s ease-in-out infinite;
}

.float-whatsapp-badge span {
  color: var(--whatsapp);
}

.float-whatsapp-btn {
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(22, 112, 67, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.float-whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.float-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0.5;
  animation: ripple-pulse 2s infinite;
}

.float-whatsapp:hover .float-whatsapp-btn {
  transform: scale(1.08);
  background-color: var(--whatsapp-hover);
}

@keyframes ripple-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }

  .container {
    padding: 0 14px;
  }

  /* Topbar Mobile */
  .topbar {
    font-size: 0.72rem;
    height: 32px;
  }
  .topbar-content {
    height: 32px;
  }
  .topbar-right {
    gap: 12px;
  }

  /* Header Mobile */
  .main-header {
    height: var(--header-height);
  }
  .main-header.scrolled {
    height: 58px;
  }
  .brand-logo img {
    width: 36px;
    height: 36px;
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .brand-subtitle {
    font-size: 0.55rem;
  }
  .btn-header-cta {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    padding: 0 !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  .btn-header-cta span,
  .btn-header-cta .btn-text-desktop {
    display: none !important;
  }
  .btn-header-cta svg {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 28px 0 38px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .badge-tech {
    font-size: 0.62rem;
    padding: 4px 8px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .hero-title {
    font-size: 1.55rem;
    line-height: 1.18;
    margin: 8px 0 14px;
    letter-spacing: -0.02em;
  }
  .hero-title-block {
    display: block;
  }
  .hero-description {
    font-size: 0.90rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
  }
  .hero-chip {
    font-size: 0.74rem;
    padding: 5px 10px;
    background: rgba(15, 31, 56, 0.85);
    border: 1px solid var(--border-tech);
    color: #FFFFFF;
    border-radius: 3px;
  }
  .hero-buttons {
    margin-bottom: 0;
    width: 100%;
    align-items: stretch;
  }
  .hero-cta-main {
    padding: 15px 20px;
    font-size: 0.95rem;
    width: 100%;
    border-radius: 4px;
  }
  .hero-cta-sub {
    text-align: center;
    width: 100%;
    margin-top: 8px;
    font-size: 0.76rem;
    color: var(--gold-light);
    opacity: 0.85;
  }

  /* Ocultar Card Duplicado do Hero no Mobile (Elimina repetição de botão e poluição) */
  .hero-card-box {
    display: none;
  }

  /* Barra de Autoridade */
  .authority-bar {
    padding: 14px 0;
  }
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .auth-stat-card {
    gap: 8px;
    padding: 8px;
    background: rgba(15, 31, 56, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }
  .auth-stat-icon {
    width: 32px;
    height: 32px;
  }
  .auth-stat-icon svg {
    width: 16px;
    height: 16px;
  }
  .auth-stat-info h4 {
    font-size: 0.82rem;
  }
  .auth-stat-info p {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  /* Seções Gerais */
  .services-section,
  .compliance-section,
  .gallery-section,
  .why-us-section,
  .coverage-section {
    padding: 44px 0;
  }
  .section-title {
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 12px;
  }
  .section-subtitle {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .services-header-wrap {
    margin-bottom: 30px;
  }
  .services-catalog {
    gap: 16px;
  }
  .service-box {
    padding: 20px 16px;
  }
  .service-box-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  .service-box-icon {
    width: 40px;
    height: 40px;
  }
  .service-box-icon svg {
    width: 20px;
    height: 20px;
  }
  .service-box-title {
    font-size: 1.10rem;
  }
  .service-items-list {
    gap: 8px;
    margin-bottom: 18px;
  }
  .service-items-list li {
    font-size: 0.82rem;
  }

  /* Normas */
  .compliance-grid {
    gap: 28px;
  }
  .nr-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .nr-tag-badge {
    font-size: 0.80rem;
    padding: 4px 8px;
  }
  .nr-info h4 {
    font-size: 0.94rem;
  }
  .nr-info p {
    font-size: 0.78rem;
  }

  /* Galeria */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
  }
  .gallery-card {
    height: 160px;
  }
  .gallery-card-overlay {
    padding: 10px;
  }
  .gallery-card-caption {
    font-size: 0.74rem;
    line-height: 1.2;
  }
  .gallery-card-tag {
    font-size: 0.62rem;
  }

  /* Por que nós */
  .diferenciais-list {
    gap: 12px;
    margin-top: 20px;
  }
  .diferencial-item {
    padding: 14px;
    gap: 10px;
  }
  .dif-num {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
  }
  .dif-text h4 {
    font-size: 0.94rem;
  }
  .dif-text p {
    font-size: 0.80rem;
  }
  .stats-counter-box {
    padding: 20px 14px;
    gap: 12px;
  }
  .counter-val {
    font-size: 1.65rem;
  }
  .counter-lbl {
    font-size: 0.72rem;
  }

  /* Contato & Cobertura */
  .coverage-grid {
    gap: 28px;
    margin-top: 24px;
  }
  .contact-card-highlight {
    padding: 20px 16px;
  }
  .city-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* CTA Final */
  .final-cta-section {
    padding: 44px 0;
  }
  .final-cta-title {
    font-size: 1.48rem;
  }
  .final-cta-desc {
    font-size: 0.86rem;
    margin-bottom: 24px;
  }
  .final-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Ocultar Botão Flutuante no Mobile (Elimina sobreposições e mantém rodapé limpo) */
  .float-whatsapp {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .header-actions .btn-sm span {
    display: none;
  }
  .header-actions .btn-sm {
    padding: 7px;
    border-radius: 50%;
  }
  .header-actions .btn-sm svg {
    margin: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    height: 200px;
  }
}

/* --------------------------------------------------------------------------
   16. ANIMAÇÕES DE SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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