/* ==========================================================================
   CGS SERVIÇOS ELÉTRICOS - DESIGN SYSTEM & FOLHA DE ESTILOS RESPONSIVA MASTER
   Paleta: Azul Marinho Tecnológico, Âmbar Alta Tensão, Ciano de Proteção
   100% Otimizado para Mobile (320px+), Tablets e Desktop
   ========================================================================== */

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

:root {
  /* Cores Principais */
  --primary-dark: #070F26;
  --primary-navy: #0B192C;
  --primary-blue: #1E3E62;
  --primary-light-blue: #0284C7;
  
  /* Cores de Destaque e Ação */
  --electric-amber: #FF9E00;
  --electric-gold: #FFB703;
  --electric-gold-hover: #E09600;
  --electric-cyan: #00F0FF;
  --electric-cyan-soft: rgba(0, 240, 255, 0.12);
  
  /* Status */
  --emergency-red: #EF4444;
  --emergency-dark: #DC2626;
  --whatsapp-green: #22C55E;
  --whatsapp-hover: #16A34A;
  
  /* Fundos e Superfícies Neutras */
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-card-dark: #112240;
  --bg-card-darker: #0A192F;
  
  /* Textos */
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #E2E8F0;
  --text-white: #FFFFFF;
  
  /* Bordas */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-dark: #1E293B;
  --border-glow: rgba(0, 240, 255, 0.3);
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-dark-card: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 25px rgba(255, 183, 3, 0.35);
  --shadow-whatsapp: 0 8px 25px rgba(34, 197, 94, 0.35);
  
  /* Tipografia */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Arredondamento */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  /* Espaçamentos Globais */
  --section-pad-desktop: 90px 0;
  --section-pad-tablet: 70px 0;
  --section-pad-mobile: 50px 0;
}

/* Reset Global e Anti-Overflow */
*, *::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(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 74px; /* Espaço para barra fixa mobile */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.25;
  word-break: break-word;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   UTILITÁRIOS & COMPONENTES GLOBAIS
   ========================================================================== */
.section-header-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

@media (min-width: 768px) {
  .section-header-box {
    margin-bottom: 55px;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 158, 0, 0.12);
  color: var(--electric-amber);
  border: 1px solid rgba(255, 158, 0, 0.28);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-tag {
    font-size: 0.85rem;
    padding: 6px 16px;
    margin-bottom: 16px;
  }
}

.section-tag.cyan-tag {
  background: var(--electric-cyan-soft);
  color: var(--electric-cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

.section-main-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

@media (min-width: 576px) {
  .section-main-title {
    font-size: 2.15rem;
  }
}

@media (min-width: 992px) {
  .section-main-title {
    font-size: 2.45rem;
    margin-bottom: 18px;
  }
}

.section-subtitle-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle-text {
    font-size: 1.1rem;
    line-height: 1.65;
  }
}

.text-gold {
  color: var(--electric-gold) !important;
}

.text-amber {
  color: var(--electric-amber) !important;
}

.text-cyan {
  color: var(--electric-cyan) !important;
}

/* ==========================================================================
   SISTEMA DE BOTÕES RESPONSIVOS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.2;
  min-height: 50px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 15px 28px;
    min-height: 52px;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-gold) 0%, var(--electric-amber) 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 158, 0, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.btn-emergency {
  background: linear-gradient(135deg, var(--emergency-red) 0%, var(--emergency-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
  min-height: 40px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1.02rem;
  min-height: 54px;
  border-radius: var(--radius-md);
}

.btn-pulse {
  animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ==========================================================================
   1. BARRA SUPERIOR DE URGÊNCIA
   ========================================================================== */
.top-urgency-bar {
  background: linear-gradient(90deg, #180808 0%, #991B1B 50%, #180808 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-urgency-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .top-urgency-inner {
    justify-content: space-between;
    text-align: left;
    font-size: 0.88rem;
    padding: 2px 0;
  }
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22C55E;
  animation: blink-dot 1.2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.top-contact-links {
  display: none;
  align-items: center;
  gap: 18px;
}

@media (min-width: 768px) {
  .top-contact-links {
    display: flex;
  }
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
}

.top-contact-links a:hover {
  color: var(--electric-gold);
}

/* ==========================================================================
   2. HEADER & NAVEGAÇÃO
   ========================================================================== */
.site-header {
  background-color: var(--primary-navy);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

@media (min-width: 992px) {
  .navbar {
    padding: 16px 0;
    gap: 24px;
  }
}

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

@media (min-width: 768px) {
  .brand-logo {
    gap: 12px;
  }
}

.logo-icon-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--electric-gold) 0%, var(--electric-amber) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.25rem;
  box-shadow: 0 0 14px rgba(255, 183, 3, 0.35);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.4rem;
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.28rem;
    letter-spacing: 0.3px;
  }
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .brand-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.6px;
    margin-top: 2px;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 24px;
  margin-left: 10px;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

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

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

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

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

.nav-cta-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 992px) {
  .nav-cta-box {
    margin-left: auto;
  }
}

/* Oculta botão de WhatsApp do header em mobile para não competir com o menu */
.nav-cta-box .btn-whatsapp {
  display: none;
}

@media (min-width: 576px) {
  .nav-cta-box .btn-whatsapp {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary-navy);
  border-top: 1px solid var(--border-dark);
  border-bottom: 3px solid var(--electric-gold);
  padding: 20px 24px 28px 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   3. HERO SECTION (100% RESPONSIVO)
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 60%, #0d2242 100%);
  color: #FFFFFF;
  padding: 45px 0 55px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 70px 0 80px 0;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding: 95px 0 105px 0;
  }
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .hero-badge-tag {
    font-size: 0.88rem;
    padding: 8px 18px;
    margin-bottom: 24px;
  }
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  color: #FFFFFF;
}

@media (min-width: 576px) {
  .hero-main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .hero-main-title {
    font-size: 3.15rem;
    margin-bottom: 24px;
  }
}

.hero-lead-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

@media (min-width: 768px) {
  .hero-lead-text {
    font-size: 1.14rem;
    line-height: 1.75;
    margin-bottom: 38px;
  }
}

/* Botões do Hero */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
  width: 100%;
}

@media (min-width: 576px) {
  .hero-cta-wrap {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px;
  }
}

.hero-cta-btn-item {
  width: 100%;
}

@media (min-width: 576px) {
  .hero-cta-btn-item {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
  }
}

.hero-bullets-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

@media (max-width: 360px) {
  .hero-bullets-box {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hero-bullets-box {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    padding-top: 32px;
  }
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .hero-bullet-item {
    font-size: 0.95rem;
    gap: 10px;
  }
}

.hero-bullet-item svg {
  color: var(--electric-gold);
  flex-shrink: 0;
}

/* Card do Formulário no Hero */
.hero-card-container {
  position: relative;
  width: 100%;
}

.hero-quote-card {
  background: rgba(17, 34, 64, 0.94);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-dark-card), 0 0 20px rgba(0, 240, 255, 0.18);
  width: 100%;
}

@media (min-width: 576px) {
  .hero-quote-card {
    padding: 34px 28px;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 992px) {
  .hero-quote-card {
    padding: 38px 32px;
  }
}

.hero-card-top {
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-card-top {
    margin-bottom: 26px;
  }
}

.hero-card-tag {
  background: var(--electric-gold);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.hero-card-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .hero-card-heading {
    font-size: 1.55rem;
  }
}

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

.form-field-group {
  margin-bottom: 16px;
}

.form-field-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-field-control {
  width: 100%;
  padding: 12px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.94rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-field-control:focus {
  outline: none;
  border-color: var(--electric-cyan);
  background-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}

.form-field-control option {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

.form-card-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 14px;
  text-align: center;
}

/* ==========================================================================
   4. BARRA DE ESTATÍSTICAS E CONFIANÇA
   ========================================================================== */
.trust-stats-section {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 35px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .trust-stats-section {
    padding: 50px 0;
  }
}

.stats-flex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
}

@media (min-width: 768px) {
  .stats-flex-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.stat-metric-card {
  text-align: center;
  padding: 6px 8px;
}

@media (min-width: 768px) {
  .stat-metric-card:not(:last-child) {
    border-right: 1px solid var(--border-light);
  }
}

.stat-big-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .stat-big-number {
    font-size: 2.35rem;
  }
}

.stat-metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .stat-metric-label {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   5. GRADE DE SERVIÇOS ESPECIALIZADOS
   ========================================================================== */
.services-section-wrapper {
  padding: var(--section-pad-mobile);
  background-color: var(--bg-page);
}

@media (min-width: 768px) {
  .services-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .services-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 680px) {
  .services-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .services-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.service-item-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-item-card {
    padding: 34px 28px;
    border-radius: var(--radius-lg);
  }
}

.service-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--electric-gold));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.service-item-card:hover::before {
  opacity: 1;
}

.service-badge-cat {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-light-blue);
  background: rgba(2, 132, 199, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 14px;
  width: fit-content;
}

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.05) 0%, rgba(255, 183, 3, 0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 22px;
  }
}

.service-item-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  color: var(--electric-gold);
}

.service-item-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .service-item-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
}

.service-item-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .service-item-description {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}

.service-points-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--text-main);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

@media (min-width: 768px) {
  .service-points-list {
    gap: 10px;
    margin-bottom: 26px;
    font-size: 0.92rem;
    padding-top: 18px;
  }
}

.service-point-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-point-row svg {
  color: var(--whatsapp-green);
  flex-shrink: 0;
}

.service-cta-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-light-blue);
  margin-top: auto;
  padding-top: 6px;
}

.service-cta-anchor:hover {
  color: var(--electric-amber);
  gap: 10px;
}

/* ==========================================================================
   6. SIMULADOR INTERATIVO DE ORÇAMENTO (PERFEITO NO MOBILE)
   ========================================================================== */
.calculator-section-wrapper {
  padding: var(--section-pad-mobile);
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .calculator-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .calculator-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.calc-main-box {
  background: var(--bg-page);
  border: 1.5px solid var(--primary-blue);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  box-shadow: var(--shadow-md);
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .calc-main-box {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 768px) {
  .calc-main-box {
    padding: 42px 34px;
    border-width: 2px;
    box-shadow: var(--shadow-lg);
  }
}

.calc-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .calc-dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
  }
}

.calc-step-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .calc-step-heading {
    font-size: 1.15rem;
    margin-bottom: 18px;
    gap: 10px;
  }
}

.calc-step-badge {
  width: 24px;
  height: 24px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .calc-step-badge {
    width: 28px;
    height: 28px;
    font-size: 0.88rem;
  }
}

.calc-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Cards de Opção */
.calc-option-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--bg-white);
  min-height: 48px;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .calc-option-radio-card {
    gap: 14px;
    padding: 13px 18px;
    min-height: 52px;
  }
}

.calc-option-radio-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.calc-option-radio-card.selected {
  border-color: var(--electric-amber);
  background-color: rgba(255, 158, 0, 0.08);
  box-shadow: 0 0 12px rgba(255, 158, 0, 0.18);
}

.calc-option-radio-card input[type="radio"] {
  accent-color: var(--electric-amber);
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.calc-option-radio-card strong {
  font-size: 0.92rem;
  display: block;
  line-height: 1.3;
}

/* Grid de Urgência */
.calc-urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}

@media (max-width: 360px) {
  .calc-urgency-grid {
    grid-template-columns: 1fr;
  }
}

.calc-urgency-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  min-height: 48px;
}

.calc-urgency-text {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .calc-urgency-text {
    font-size: 0.95rem;
  }
}

.calc-urgency-text.alert-text {
  color: var(--emergency-red);
  font-weight: 800;
}

/* Card de Resumo */
.calc-output-card {
  background: var(--primary-dark);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 576px) {
  .calc-output-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 768px) {
  .calc-output-card {
    padding: 34px 28px;
    gap: 22px;
  }
}

.calc-output-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.calc-output-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--electric-gold);
}

@media (min-width: 768px) {
  .calc-output-title {
    font-size: 1.3rem;
  }
}

.calc-output-badge {
  background: rgba(255, 183, 3, 0.15);
  color: var(--electric-gold);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.calc-summary-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-service-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 14px;
}

@media (min-width: 768px) {
  .calc-service-block {
    padding: 16px 18px;
  }
}

.calc-block-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 4px;
}

.calc-service-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .calc-service-title {
    font-size: 1.08rem;
  }
}

.calc-service-condition {
  font-size: 0.84rem;
  color: var(--electric-cyan);
  font-weight: 600;
  line-height: 1.35;
}

.calc-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (min-width: 768px) {
  .calc-meta-grid {
    gap: 12px;
  }
}

.calc-meta-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 768px) {
  .calc-meta-pill {
    padding: 10px 14px;
  }
}

.calc-meta-label {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.calc-meta-value {
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .calc-meta-value {
    font-size: 0.92rem;
  }
}

.calc-meta-value.val-green {
  color: var(--whatsapp-green);
}

.calc-output-action-box {
  margin-top: 4px;
}

.calc-response-hint {
  text-align: center;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 10px;
}

/* ==========================================================================
   7. POR QUE NOS ESCOLHER / AUTORIDADE TÉCNICA
   ========================================================================== */
.authority-section-wrapper {
  padding: var(--section-pad-mobile);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: #FFFFFF;
  position: relative;
}

@media (min-width: 768px) {
  .authority-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .authority-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.authority-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .authority-grid-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
  }
}

.authority-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .authority-title {
    font-size: 2.35rem;
    margin-bottom: 20px;
  }
}

.authority-lead {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .authority-lead {
    font-size: 1.1rem;
    margin-bottom: 34px;
    line-height: 1.7;
  }
}

.authority-features-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 576px) {
  .authority-features-container {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.authority-item-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: all 0.25s ease;
}

@media (min-width: 768px) {
  .authority-item-card {
    padding: 24px;
  }
}

.authority-item-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--electric-gold);
  transform: translateY(-3px);
}

.authority-item-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.authority-item-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.authority-item-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.45;
}

.tech-standards-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: var(--shadow-dark-card);
}

@media (min-width: 768px) {
  .tech-standards-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
  }
}

.tech-standards-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 14px;
}

.tech-standards-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
}

.tech-standards-badge {
  background: var(--electric-cyan-soft);
  color: var(--electric-cyan);
  border: 1px solid var(--electric-cyan);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.tech-specs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.tech-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tech-spec-check {
  width: 22px;
  height: 22px;
  background-color: var(--electric-gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-spec-row h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.tech-spec-row p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ==========================================================================
   8. PROVA SOCIAL / DEPOIMENTOS DE CLIENTES
   ========================================================================== */
.reviews-section-wrapper {
  padding: var(--section-pad-mobile);
  background-color: var(--bg-alt);
}

@media (min-width: 768px) {
  .reviews-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .reviews-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.google-rating-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  width: fit-content;
  margin: 0 auto 34px auto;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .google-rating-pill {
    padding: 10px 24px;
    font-size: 0.96rem;
    gap: 12px;
    margin-bottom: 45px;
  }
}

.google-stars-row {
  color: #FBBC04;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.review-item-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

@media (min-width: 768px) {
  .review-item-box {
    padding: 30px 24px;
    border-radius: var(--radius-lg);
  }
}

.review-item-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--electric-gold);
}

.review-header-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.client-avatar-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.client-text-meta h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
}

.client-text-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars-icons {
  color: #FBBC04;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.review-quote-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-tag-service {
  font-size: 0.76rem;
  background-color: var(--bg-alt);
  color: var(--primary-blue);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

/* ==========================================================================
   9. COMO FUNCIONA (PASSO A PASSO)
   ========================================================================== */
.steps-section-wrapper {
  padding: var(--section-pad-mobile);
  background-color: var(--bg-white);
}

@media (min-width: 768px) {
  .steps-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .steps-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.steps-triple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .steps-triple-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

.step-flow-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 768px) {
  .step-flow-card {
    padding: 36px 26px;
    border-radius: var(--radius-lg);
  }
}

.step-flow-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--electric-amber);
  transform: translateY(-3px);
}

.step-flow-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-gold), var(--electric-amber));
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: var(--shadow-gold);
}

.step-flow-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.step-flow-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   10. ÁREA DE COBERTURA
   ========================================================================== */
.coverage-section-wrapper {
  padding: var(--section-pad-mobile);
  background: linear-gradient(135deg, #09152C 0%, #162C4E 100%);
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .coverage-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .coverage-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.coverage-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .coverage-dual-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
  }
}

.coverage-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .coverage-title {
    font-size: 2.25rem;
    margin-bottom: 18px;
  }
}

.coverage-desc {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .coverage-desc {
    font-size: 1.06rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }
}

.neighborhoods-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.neighborhood-badge-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .neighborhood-badge-item {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.coverage-vehicle-card {
  background: rgba(17, 34, 64, 0.85);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .coverage-vehicle-card {
    padding: 34px 28px;
    border-radius: var(--radius-lg);
  }
}

.coverage-vehicle-card h3 {
  font-size: 1.25rem;
  color: var(--electric-gold);
  margin-bottom: 10px;
}

.coverage-vehicle-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ==========================================================================
   11. FAQ (PERGUNTAS FREQUENTES)
   ========================================================================== */
.faq-section-wrapper {
  padding: var(--section-pad-mobile);
  background-color: var(--bg-page);
}

@media (min-width: 768px) {
  .faq-section-wrapper {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 992px) {
  .faq-section-wrapper {
    padding: var(--section-pad-desktop);
  }
}

.faq-list-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.faq-accordion-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.faq-toggle-trigger {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

@media (min-width: 768px) {
  .faq-toggle-trigger {
    padding: 20px 24px;
    font-size: 1.05rem;
    gap: 16px;
  }
}

.faq-chevron-icon {
  font-size: 1rem;
  transition: transform 0.25s ease;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-chevron-icon {
  transform: rotate(180deg);
  color: var(--electric-amber);
}

.faq-content-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

@media (min-width: 768px) {
  .faq-content-drawer {
    padding: 0 24px;
  }
}

.faq-content-body {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

@media (min-width: 768px) {
  .faq-content-body {
    padding-bottom: 22px;
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

/* ==========================================================================
   12. FINAL CTA DE ALTO IMPACTO
   ========================================================================== */
.final-cta-section-wrapper {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .final-cta-section-wrapper {
    padding: 85px 0;
  }
}

.final-cta-content-box {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .final-cta-heading {
    font-size: 2.45rem;
    margin-bottom: 20px;
  }
}

.final-cta-description {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .final-cta-description {
    font-size: 1.14rem;
    margin-bottom: 36px;
    line-height: 1.7;
  }
}

.final-cta-actions-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

@media (min-width: 576px) {
  .final-cta-actions-group {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
  
  .final-cta-actions-group .btn {
    width: auto;
  }
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer-wrapper {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 45px 0 25px 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .site-footer-wrapper {
    padding: 60px 0 30px 0;
  }
}

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

@media (min-width: 768px) {
  .footer-columns-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
  }
}

.footer-brand-column h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand-column p {
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-column-box h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-anchors-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-anchors-list a {
  color: #94A3B8;
}

.footer-anchors-list a:hover {
  color: var(--electric-gold);
}

.footer-bottom-copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748B;
  font-size: 0.82rem;
}

/* ==========================================================================
   14. ELEMENTOS FLUTUANTES & BARRA MOBILE FIXA
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 84px;
  right: 16px;
  width: 52px;
  height: 52px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.5);
  z-index: 999;
  transition: transform 0.25s ease;
}

@media (min-width: 992px) {
  .floating-whatsapp-btn {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-btn .tooltip-bubble {
  display: none;
}

@media (min-width: 992px) {
  .floating-whatsapp-btn .tooltip-bubble {
    display: block;
    position: absolute;
    right: 70px;
    background: var(--primary-dark);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    box-shadow: var(--shadow-md);
  }
  
  .floating-whatsapp-btn:hover .tooltip-bubble {
    opacity: 1;
  }
}

.mobile-bottom-bar-fixed {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 1px solid var(--border-dark);
  padding: 8px 12px;
  gap: 10px;
  z-index: 1001;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .mobile-bottom-bar-fixed {
    display: none;
  }
}

.mobile-bottom-bar-fixed a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 44px;
}
