/* ==========================================================================
   HORIZON - DESIGN SYSTEM & ESTILOS PRINCIPAIS
   Paleta: Azul Profundo (#061A38), Azul Royal (#0066FF), Branco Puro (#FFFFFF)
   Inspiração: Interface Clean, High-Tech, Fundo Claro
   ========================================================================== */

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

:root {
  /* Cores da Marca */
  --hz-navy: #061A38;
  --hz-navy-dark: #030F24;
  --hz-navy-light: #0D2B59;
  --hz-blue: #0066FF;
  --hz-blue-hover: #0052CC;
  --hz-blue-light: #EEF4FF;
  --hz-blue-subtle: #F0F6FF;
  --hz-cyan: #00C6FF;
  
  /* Cores de Apoio / Status */
  --hz-green: #10B981;
  --hz-green-light: #ECFDF5;
  --hz-purple: #8B5CF6;
  --hz-purple-light: #F5F3FF;
  --hz-amber: #F59E0B;
  --hz-amber-light: #FEF3C7;
  --hz-red: #EF4444;

  /* Escala de Cinzas & Fundos */
  --hz-white: #FFFFFF;
  --hz-bg-page: #F8FAFC;
  --hz-bg-card: #FFFFFF;
  --hz-bg-subtle: #F1F5F9;
  --hz-border: #E2E8F0;
  --hz-border-focus: #BFDBFE;
  
  /* Textos */
  --hz-text-title: #0B192C;
  --hz-text-body: #334155;
  --hz-text-muted: #64748B;
  --hz-text-light: #94A3B8;

  /* Tipografia */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(6, 26, 56, 0.07), 0 2px 4px -2px rgba(6, 26, 56, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(6, 26, 56, 0.08), 0 4px 6px -4px rgba(6, 26, 56, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(6, 26, 56, 0.1), 0 8px 10px -6px rgba(6, 26, 56, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 102, 255, 0.25);
  --shadow-card-hover: 0 16px 32px rgba(6, 26, 56, 0.09);

  /* Transições */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::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-main);
  background-color: var(--hz-bg-page);
  color: var(--hz-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fundo Grid Sutil inspirado no GHL / Lumen */
.bg-grid-pattern {
  background-image: 
    linear-gradient(to right, rgba(6, 26, 56, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 26, 56, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-radial-gradient {
  background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 960px;
}

.section-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-padding-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--hz-text-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--hz-navy) 0%, var(--hz-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-blue {
  color: var(--hz-blue);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background-color: var(--hz-blue-light);
  color: var(--hz-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.section-tag-purple {
  background-color: var(--hz-purple-light);
  color: var(--hz-purple);
  border-color: rgba(139, 92, 246, 0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--hz-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

/* ==========================================================================
   BOTÕES & AÇÕES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hz-blue) 0%, #1a75ff 100%);
  color: var(--hz-white);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--hz-blue-hover) 0%, var(--hz-blue) 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--hz-white);
  color: var(--hz-navy);
  border: 1px solid var(--hz-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--hz-bg-page);
  border-color: var(--hz-blue);
  color: var(--hz-blue);
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--hz-navy);
  color: var(--hz-white);
}

.btn-navy:hover {
  background-color: var(--hz-navy-light);
  transform: translateY(-2px);
}

.btn-pulse {
  position: relative;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.6);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(0, 102, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
  }
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.top-bar {
  background-color: var(--hz-navy);
  color: var(--hz-white);
  padding: 9px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar-center-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #E2E8F0;
  font-size: 0.85rem;
}

.top-bar-main {
  font-weight: 700;
  color: var(--hz-white);
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
}

.top-bar-sub {
  color: #94A3B8;
  font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.whatsapp-float:hover .whatsapp-icon-wrap {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  background-color: #20BA5A;
}

.whatsapp-tooltip {
  background: var(--hz-navy);
  color: var(--hz-white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(6, 26, 56, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-ping {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.6;
  animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hz-border);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

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

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hz-text-body);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--hz-blue);
  transition: width var(--transition-fast);
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background: var(--hz-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--hz-border);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--hz-blue-light);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--hz-blue-light);
  color: var(--hz-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
  background-color: var(--hz-blue);
  color: var(--hz-white);
}

.dropdown-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hz-text-title);
  margin-bottom: 2px;
}

.dropdown-desc {
  font-size: 0.775rem;
  color: var(--hz-text-muted);
  line-height: 1.3;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--hz-navy);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--hz-navy);
}

.hero-title span.italic-highlight {
  font-style: italic;
  color: var(--hz-blue);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--hz-text-body);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-stats-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--hz-white);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.hero-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--hz-blue-light);
  color: var(--hz-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-stat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hz-text-title);
  line-height: 1.3;
}

.hero-stat-text strong {
  color: var(--hz-blue);
  font-weight: 800;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.825rem;
  color: var(--hz-text-muted);
}

/* Mockup Celular & Simulador Visual da Secretária */
.phone-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-card {
  width: 100%;
  max-width: 400px;
  background: var(--hz-white);
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(6, 26, 56, 0.18), 0 0 0 8px #F1F5F9;
  border: 1px solid var(--hz-border);
  padding: 24px 20px;
  position: relative;
  overflow: visible;
}

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

.phone-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hz-navy) 0%, var(--hz-blue) 100%);
  color: var(--hz-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.phone-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--hz-text-title);
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--hz-green);
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--hz-green);
  animation: pulse-dot 1.5s infinite;
}

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

/* Sound Wave Animation */
.sound-wave-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.02) 70%);
  margin: 15px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sound-wave-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hz-blue) 0%, #00C6FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hz-white);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
  z-index: 2;
}

.wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(0, 102, 255, 0.3);
  animation: ripple 2.5s infinite linear;
}

.wave-ring:nth-child(1) { width: 90px; height: 90px; animation-delay: 0s; }
.wave-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 0.8s; }
.wave-ring:nth-child(3) { width: 150px; height: 150px; animation-delay: 1.6s; }

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0.7); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Hero Action Card (Real Call Direct) */
.hero-action-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-action-card {
  background: var(--hz-white);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: 0 20px 40px -10px rgba(6, 26, 56, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 440px;
  position: relative;
  transition: all var(--transition-normal);
}

.hero-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -10px rgba(6, 26, 56, 0.16);
}

.action-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.action-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hz-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.action-card-desc {
  font-size: 0.9rem;
  color: var(--hz-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   METRICS BAR (GHL PROOF NUMBERS)
   ========================================================================== */

.metrics-bar-section {
  background: var(--hz-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0;
  color: var(--hz-white);
  box-shadow: 0 4px 20px rgba(6, 26, 56, 0.15);
}

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

.metric-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item:last-child {
  border-right: none;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 102, 255, 0.25);
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
}

/* ==========================================================================
   TABELA COMPARATIVA OFICIAL DE MERCADO
   ========================================================================== */

.comparison-section {
  background-color: var(--hz-bg-page);
}

.comparison-table-wrap {
  background: var(--hz-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--hz-border);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.comparison-table th, 
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--hz-border);
}

.comparison-table th {
  background-color: #F8FAFC;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hz-text-title);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.comparison-table th.th-highlight,
.comparison-table td.td-highlight {
  background-color: rgba(0, 102, 255, 0.04);
  border-left: 2px solid var(--hz-blue);
  border-right: 2px solid var(--hz-blue);
}

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

.comparison-metric-title {
  font-weight: 700;
  color: var(--hz-text-title);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.comparison-metric-desc {
  font-size: 0.775rem;
  color: var(--hz-text-muted);
}

.badge-metric-bad {
  display: inline-flex;
  padding: 4px 10px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-metric-good {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--hz-green-light);
  color: var(--hz-green);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.impact-revenue {
  font-weight: 800;
  color: var(--hz-navy);
  font-size: 1.05rem;
}

/* Comparison Mobile Cards */
.comparison-cards-mobile {
  display: none;
}

.comp-mobile-card {
  background: var(--hz-white);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-card-top {
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 10px;
}

.comp-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hz-navy);
  margin-bottom: 4px;
}

.comp-card-desc {
  font-size: 0.8rem;
  color: var(--hz-text-muted);
  line-height: 1.4;
}

.comp-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.comp-col {
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-col-bad {
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
}

.comp-col-good {
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
}

.comp-col-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
}

.comp-col-val {
  font-size: 0.88rem;
  font-weight: 800;
}

.bad-val {
  color: #DC2626;
}

.good-val {
  color: #16A34A;
}

.comp-card-impact {
  background: #EEF4FF;
  border: 1px solid #DBEAFE;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: var(--hz-navy);
  text-align: center;
  font-weight: 600;
}

.comp-card-impact strong {
  color: var(--hz-blue);
  font-weight: 800;
}

/* ==========================================================================
   AGENTES INTELIGENTES HORIZON (TABS INTERATIVAS - GHL INSPIRATION)
   ========================================================================== */

.agents-showcase-section {
  background-color: var(--hz-white);
}

.agents-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.agent-tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--hz-bg-page);
  border: 1px solid var(--hz-border);
  color: var(--hz-text-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.agent-tab-btn.active {
  background: var(--hz-navy);
  color: var(--hz-white);
  border-color: var(--hz-navy);
  box-shadow: 0 4px 12px rgba(6, 26, 56, 0.2);
}

.agent-tab-content {
  display: none;
}

.agent-tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.agent-preview-card {
  background: var(--hz-bg-page);
  border-radius: var(--radius-xl);
  border: 1px solid var(--hz-border);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.chat-message-bubble {
  background: var(--hz-white);
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid var(--hz-border);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.chat-message-bubble.bubble-client {
  margin-left: 30px;
  background-color: var(--hz-blue-light);
  border-color: rgba(0, 102, 255, 0.15);
}

.chat-message-bubble.bubble-ai {
  margin-right: 30px;
  border-left: 3px solid var(--hz-blue);
}

.agent-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.agent-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--hz-blue-light);
  color: var(--hz-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ==========================================================================
   NICHOS ESPECÍFICOS DE SERVIÇOS DOMÉSTICOS
   ========================================================================== */

.niches-section {
  background-color: var(--hz-bg-page);
}

.niches-grid,
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.hero-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.niche-card {
  background: var(--hz-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hz-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.niche-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 102, 255, 0.3);
}

.niche-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #E2E8F0;
}

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

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

.niche-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.niche-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--hz-text-title);
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.niche-description {
  font-size: 0.9rem;
  color: var(--hz-text-body);
  margin-bottom: 18px;
  flex-grow: 1;
  text-align: center;
  line-height: 1.55;
}

.niche-pricing-example {
  background: var(--hz-bg-page);
  border: 1px dashed var(--hz-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--hz-blue);
  font-weight: 700;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   CALCULADORA DE FATURAMENTO RECUPERADO
   ========================================================================== */

.calculator-section {
  background: linear-gradient(135deg, var(--hz-navy) 0%, var(--hz-navy-dark) 100%);
  color: var(--hz-white);
  position: relative;
  overflow: hidden;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.calc-title {
  color: var(--hz-white);
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 14px;
}

.calc-desc {
  color: #CBD5E1;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.calc-control-group {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #F1F5F9;
}

.calc-value-display {
  background: rgba(0, 102, 255, 0.35);
  color: #38BDF8;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.35);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--hz-blue);
  border: 3px solid var(--hz-white);
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.9);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result-box {
  background: var(--hz-white);
  color: var(--hz-navy);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.calc-result-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--hz-green-light);
  color: var(--hz-green);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.calc-result-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--hz-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.calc-result-sub {
  display: inline-block;
  background: #F1F5F9;
  color: #475569;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}

/* ==========================================================================
   FORMULÁRIO DE APLICAÇÃO / CALL ESTRATÉGICA
   ========================================================================== */

.lead-form-section {
  background-color: var(--hz-white);
}

.form-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.form-wrapper-card {
  background: var(--hz-bg-page);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--hz-text-title);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-sm);
  background-color: var(--hz-white);
  color: var(--hz-text-title);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--hz-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--hz-navy);
  color: #94A3B8;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  height: 44px;
  margin-bottom: 18px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #CBD5E1;
}

.footer-title {
  color: var(--hz-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--hz-white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--hz-white);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 102, 255, 0.3);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hz-blue-light);
  color: var(--hz-blue);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--hz-navy);
}

.step-desc {
  font-size: 0.925rem;
  color: var(--hz-text-body);
  line-height: 1.6;
}

.mobile-drawer-cta {
  display: none;
}

/* ==========================================================================
   LIVE TEST EXPERIENCE (DEMONSTRAÇÃO TELEFÔNICA REAL)
   ========================================================================== */

.live-test-section {
  background: linear-gradient(135deg, #030F24 0%, #061A38 50%, #0B254E 100%);
  color: var(--hz-white);
  position: relative;
  overflow: hidden;
}

.live-test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.live-test-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.live-test-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
}

.live-test-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 24px;
}

.live-test-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.live-test-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.live-test-point-icon {
  color: #34D399;
  font-weight: 800;
}

.live-dialer-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--hz-text-body);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.dialer-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hz-navy);
  margin-bottom: 8px;
}

.dialer-sub {
  font-size: 0.85rem;
  color: var(--hz-text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.phone-number-display {
  background: #EEF4FF;
  border: 1px dashed #0066FF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0066FF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.phone-number-display:hover {
  background: #E0EDFF;
  transform: scale(1.02);
}

.live-test-or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0;
  color: #94A3B8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.live-test-or-divider::before,
.live-test-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #E2E8F0;
}

.live-test-or-divider::before {
  margin-right: 12px;
}

.live-test-or-divider::after {
  margin-left: 12px;
}

/* ==========================================================================
   FAQ INSTITUCIONAL (ACCORDION CORPORATIVO)
   ========================================================================== */

.faq-section {
  background-color: var(--hz-bg-page);
  border-top: 1px solid var(--hz-border);
}

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

.faq-item {
  background: var(--hz-white);
  border: 1px solid var(--hz-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--hz-blue);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.08);
}

.faq-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hz-navy);
  line-height: 1.4;
  margin: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hz-blue-light);
  color: var(--hz-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--hz-blue);
  color: var(--hz-white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq-body p {
  color: var(--hz-text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE-FIRST BREAKPOINTS)
   ========================================================================== */

/* Telas de Tablets Grandes e Laptops Pequenos */
@media (max-width: 1180px) {
  .header-inner {
    height: 70px;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--hz-bg-page);
    border: 1px solid var(--hz-border);
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: var(--hz-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 48px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--hz-border);
  }

  .nav-menu.active-mobile {
    display: flex;
    animation: slideDownMobile 0.2s ease-out;
  }

  @keyframes slideDownMobile {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--hz-border);
    background: var(--hz-bg-page);
    width: 100%;
    padding: 8px;
    margin: 8px 0 14px;
    border-radius: var(--radius-md);
  }

  .mobile-drawer-cta {
    display: block;
    margin-top: 24px;
    padding-top: 10px;
  }
}

@media (max-width: 1024px) {
  .hero-grid, 
  .agent-tab-content.active, 
  .calculator-card, 
  .form-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Mobile Screens */
@media (max-width: 768px) {
  /* Container e Espaçamentos */
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-padding-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  /* Top Bar Mobile Limpa */
  .top-bar {
    padding: 6px 12px;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-center-text {
    font-size: 0.72rem;
    gap: 6px;
    text-align: center;
    line-height: 1.35;
  }

  .top-bar-main {
    font-size: 0.72rem;
    font-weight: 700;
  }

  .top-bar-sub {
    font-size: 0.7rem;
    opacity: 0.9;
  }

  /* WhatsApp Float Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    z-index: 99;
  }

  .whatsapp-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Header Mobile */
  .header-inner {
    height: 60px;
  }

  .logo-img {
    height: 34px;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-bottom: 12px;
    line-height: 1.3;
    white-space: normal;
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.22 !important;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-stats-highlights {
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
  }

  .hero-stat-text {
    font-size: 0.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Hero Action Card Mobile */
  .hero-action-card-wrap {
    padding: 6px 0;
    width: 100%;
  }

  .hero-action-card {
    max-width: 100%;
    padding: 22px 16px;
    border-radius: var(--radius-lg);
  }

  .action-card-title {
    font-size: 1.15rem;
  }

  /* Typography */
  .section-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Metrics Bar */
  .metrics-bar-section {
    padding: 20px 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metrics-grid .metric-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .metric-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .metric-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #94A3B8;
    line-height: 1.3;
    text-align: center;
  }

  /* Live Test Mobile */
  .live-test-card {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }

  .live-test-title {
    font-size: 1.5rem !important;
  }

  .live-dialer-box {
    padding: 20px 14px;
  }

  .phone-number-display {
    font-size: 1.15rem;
    padding: 10px 12px;
  }

  /* FAQ Mobile */
  .faq-header {
    padding: 16px 14px;
  }

  .faq-title {
    font-size: 0.92rem;
  }

  .faq-body {
    padding: 0 14px;
  }

  .faq-item.active .faq-body {
    padding: 0 14px 16px;
  }

  /* Comparison Table Mobile */
  .comparison-table-wrap {
    display: none !important;
  }

  .comparison-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  /* Agent Tabs */
  .agents-tabs-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 24px;
  }

  .agent-tab-btn {
    padding: 8px 6px;
    font-size: 0.74rem;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .agent-tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .agent-preview-card {
    padding: 16px 12px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .chat-message-bubble {
    padding: 10px 12px;
    font-size: 0.82rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Niches Grid Mobile */
  .niches-grid,
  .service-features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 24px;
  }

  .niche-card {
    border-radius: var(--radius-md);
  }

  .niche-img-wrap {
    height: 160px;
  }

  .niche-card-body {
    padding: 16px 14px 20px;
  }

  .niche-title {
    font-size: 1.15rem;
  }

  /* =======================================================
     BOTÕES NO MOBILE (SEM OVERFLOW OU QUEBRA FORA DO PADRÃO)
     ======================================================= */
  .btn {
    white-space: normal !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    line-height: 1.35 !important;
  }

  .btn-lg {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    width: min(100%, 420px) !important;
    display: inline-flex !important;
  }

  /* =======================================================
     CALCULADORA NO MOBILE (CORREÇÃO TOTAL DE OVERFLOW & CORTES)
     ======================================================= */
  .calculator-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }

  .calculator-card {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 22px 14px !important;
    border-radius: 20px !important;
    gap: 20px !important;
    margin-top: 14px !important;
    overflow: hidden !important;
  }

  .calc-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .calc-desc {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    word-break: break-word !important;
  }

  .calc-control-group {
    padding: 14px 12px !important;
    border-radius: 14px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .calc-label-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
    font-size: 0.85rem !important;
    width: 100% !important;
  }

  .calc-value-display {
    font-size: 0.82rem !important;
    padding: 3px 10px !important;
    align-self: flex-start !important;
    white-space: nowrap !important;
  }

  .calc-slider {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: 10px !important;
    display: block !important;
  }

  .calc-slider::-webkit-slider-thumb {
    width: 28px !important;
    height: 28px !important;
  }

  .calc-result-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 22px 14px !important;
    border-radius: 18px !important;
    margin-top: 6px !important;
    overflow: hidden !important;
  }

  .calc-result-value {
    font-size: 2.1rem !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
  }

  .calc-result-sub {
    font-size: 0.78rem !important;
    padding: 4px 8px !important;
    margin-bottom: 14px !important;
    word-break: break-word !important;
  }

  .calc-result-box button,
  .calc-result-box .btn {
    width: 100% !important;
    padding: 13px 14px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  /* Steps Grid Mobile */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 24px;
  }

  .step-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  /* Form Section Mobile */
  .form-wrapper-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px;
    padding: 12px 12px;
  }

  /* Footer Mobile */
  .footer {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 16px;
  }
}
