/* ==========================================================================
   GALVÃO LOGÍSTICA - DESIGN SYSTEM & ESTILOS GLOBAIS
   Tema: Corporativo Premium / Suave / Sofisticado / Mobile-First
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Paleta de Cores Refinadas - Contraste Suavizado e Aveludado */
  --bg-main: #0d172e;
  --bg-surface: #132142;
  --bg-card: rgba(22, 36, 70, 0.68);
  --bg-card-hover: rgba(30, 48, 92, 0.85);
  --bg-glass: rgba(16, 28, 56, 0.85);

  /* Acentos de Cores */
  --blue-brand: #1e56a0;
  --blue-primary: #2563eb;
  --blue-light: #38bdf8;
  --blue-cyan: #06b6d4;
  --blue-dark: #0f274a;
  
  /* Gradientes */
  --grad-primary: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  --grad-accent: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #93c5fd 100%);
  --grad-card-border: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(37, 99, 235, 0.08) 100%);

  /* Destaques e Status */
  --green-online: #10b981;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1da851;
  
  /* Textos Equilibrados */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #8493a8;
  --text-heading: #ffffff;
  
  /* Bordas e Sombras */
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(56, 189, 248, 0.5);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 28px rgba(4, 9, 20, 0.35);
  --shadow-lg: 0 20px 45px rgba(2, 6, 23, 0.45);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.2);

  /* Tipografia e Raios de Borda Modernos (Elegantes com Menos Graus) */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-btn: 8px; /* Botões sofisticados e retos, sem formato lugar comum de pílula */
  
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Barra de Rolagem Premium (Custom Scrollbar)
   Harmonizada com o tema escuro corporativo
   ========================================================================== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #1e40af #070d1a;
}

/* Scrollbar para WebKit (Chrome, Edge, Safari, Brave, Opera) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #070d1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1e40af 0%, #0284c7 100%);
  border-radius: 8px;
  border: 2px solid #070d1a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563eb 0%, #38bdf8 100%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

::-webkit-scrollbar-thumb:active {
  background: #38bdf8;
}

::-webkit-scrollbar-corner {
  background: #070d1a;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  /* Background Nítido e Marcante com Vias Urbanas Noturnas e Logística */
  background-image: 
    linear-gradient(180deg, rgba(9, 18, 38, 0.40) 0%, rgba(11, 22, 46, 0.68) 45%, rgba(13, 23, 46, 0.92) 85%, rgba(13, 23, 46, 0.98) 100%),
    url('../images/bg-city-routes.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius-xs);
  color: var(--blue-light);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.section-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 8px var(--green-online);
  animation: pulseDot 2s infinite;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   HEADER / FLOATING NAVBAR COM RESPIRO
   ========================================================================== */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(16, 28, 56, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  transition: var(--transition);
}

.site-header.scrolled {
  top: 10px;
  background: rgba(14, 24, 48, 0.97);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 1.25rem;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.brand-logo img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* Navegação Desktop com White-space Nowrap e Gap Flexível */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 1.25rem);
  flex-wrap: nowrap;
}

.nav-menu-footer-actions {
  display: none; /* Apenas no menu mobile */
}

.nav-link {
  font-size: clamp(0.84rem, 0.92vw, 0.94rem);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0.15rem;
  white-space: nowrap; /* Impede quebra de linha */
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

/* Botão Área do Cliente */
.btn-sistema {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-sistema:hover {
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-light);
  border-color: rgba(56, 189, 248, 0.35);
}

/* Botão CTA Atendimento WhatsApp */
.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-btn);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 175px;
  padding-bottom: 95px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Botões do Hero com Menos Graus (Retos / Elegantes) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-btn);
  background: var(--grad-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.975rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

/* Estatísticas do Hero */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hero Showcase Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  padding: 6px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(37, 99, 235, 0.1) 60%, rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-main-img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 3px);
  object-fit: cover;
  max-height: 480px;
}

/* Badges Flutuantes */
.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(19, 33, 66, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
}

.floating-badge.badge-top {
  top: 10%;
  left: -20px;
  animation: floatSlow 5s ease-in-out infinite;
}

.floating-badge.badge-bottom {
  bottom: 8%;
  right: -15px;
  animation: floatSlow 6s ease-in-out infinite 1.5s;
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: rgba(37, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.badge-info h5 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.badge-info p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h3 {
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-text p.lead {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.15rem;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-frame:hover img {
  transform: scale(1.02);
}

.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(13, 23, 46, 0.95) 0%, transparent 100%);
  color: #fff;
}

.about-img-overlay span {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 600;
}

.about-img-overlay h4 {
  font-size: 1.25rem;
}

/* Pilares Institucionais */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: var(--shadow-md);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xs);
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.18);
}

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

.pillar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: var(--shadow-md);
}

.service-top {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

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

.service-title-wrap h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-cyan);
  letter-spacing: 0.05em;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-bullets {
  margin-bottom: 1.75rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.service-bullets li svg {
  width: 18px;
  height: 18px;
  color: var(--green-online);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-top: auto;
}

.service-link:hover {
  color: #fff;
  gap: 0.75rem;
}

/* ==========================================================================
   BASES OPERACIONAIS
   ========================================================================== */
.bases-section {
  padding: 100px 0;
  position: relative;
}

.bases-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

.bases-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.status-dot-live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 8px var(--green-online);
  animation: pulseDot 1.8s infinite;
}

.bases-filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}

.bases-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

/* Card Individual de Base */
.base-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.base-card.matriz-highlight {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(145deg, rgba(28, 45, 86, 0.85), rgba(16, 28, 56, 0.95));
  box-shadow: var(--shadow-md);
}

.base-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: var(--shadow-md);
}

.base-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.base-title-group {
  flex: 1;
  min-width: 0;
}

.base-title-group h4 {
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.25;
}

.base-cidade-row {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.base-regiao {
  display: inline-block;
  font-size: 0.825rem;
  color: var(--blue-light);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.base-tag-type {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.18);
  color: var(--blue-light);
  border: 1px solid rgba(56, 189, 248, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.matriz-highlight .base-tag-type {
  background: var(--grad-primary);
  color: #fff;
  border: none;
}

.base-details-list {
  margin-bottom: 1.5rem;
}

.base-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.base-detail-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.base-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-base-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-base-tel:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-light);
}

.btn-base-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: var(--radius-btn);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--whatsapp-green);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-base-whats:hover {
  background: var(--whatsapp-green);
  color: #fff;
}

/* ==========================================================================
   SIMULADOR DE COTAÇÃO RÁPIDA
   ========================================================================== */
.quote-section {
  padding: 100px 0;
  position: relative;
}

.quote-box {
  background: linear-gradient(135deg, rgba(22, 36, 70, 0.85) 0%, rgba(16, 28, 56, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quote-box::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.quote-info h3 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}

.quote-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.quote-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.quote-benefits-list svg {
  width: 20px;
  height: 20px;
  color: var(--green-online);
  flex-shrink: 0;
}

/* Formulário */
.quote-form {
  background: rgba(13, 23, 46, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  color: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control option {
  background: var(--bg-surface);
  color: #fff;
}

.btn-submit-quote {
  width: 100%;
  padding: 1.05rem;
  border-radius: var(--radius-btn);
  background: var(--whatsapp-green);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.025rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-submit-quote:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.why-section {
  padding: 100px 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xs);
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  text-align: center;
  transition: var(--transition);
}

.contact-box:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.contact-box-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-xs);
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.contact-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-box a.link-action {
  font-weight: 700;
  color: var(--blue-light);
  font-size: 1.05rem;
}

.contact-box a.link-action:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER CORPORATIVO
   ========================================================================== */
.site-footer {
  background: #081022;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px 0;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-legal-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-col h5 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WIDGETS FLUTUANTES (WHATSAPP RADAR & MOBILE BAR)
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-bubble {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: fadeInBubble 4s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-bubble .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-online);
}

.whatsapp-pulse-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: var(--transition);
}

.whatsapp-pulse-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-pulse-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: radarWave 2s infinite;
  opacity: 0.7;
}

.whatsapp-pulse-btn:hover {
  transform: scale(1.06);
  background: var(--whatsapp-hover);
}

/* Barra Inferior Mobile Fixa */
.mobile-sticky-bar {
  display: none;
}

/* Animações Keyframes */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@keyframes fadeInBubble {
  0%, 50% { opacity: 0; transform: translateX(10px); }
  100% { opacity: 1; transform: translateX(0); }
}
