/* ============================================================
   cnpj.css — BuscaCNPJ Gratis
   Design Institutional V3.0 — 2026-03-15
   ============================================================ */

:root {
  --primary: #1A3C30; /* Verde Escuro Conta Simples */
  --primary-hover: #112820;
  --secondary: #D3F89A; /* Verde Limão Conta Simples */
  --accent: #D3F89A;
  --bg: #FEFDF3; /* Bege Suave Conta Simples */
  --surface: #ffffff;
  --text: #1A3C30;
  --text-muted: #4d6059;
  --border: #e3e9e1;
  --border-focus: #1A3C30;
  --shadow-sm: 0 1px 2px 0 rgba(26, 60, 48, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 60, 48, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(26, 60, 48, 0.05);
  --radius-lg: 24px;
  --radius-full: 60px;
}

/* ── Reset & Core ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Nunito Sans', 'Inter', -apple-system, system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { 
  font-family: 'Lora', serif;
  font-weight: 700; 
  color: var(--primary); 
  letter-spacing: -0.02em; 
}

/* ── Header ── */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .logo img { height: 34px; }
}

.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  background: #f9fafb;
}
.header-search input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.1);
}
.header-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  gap: 32px;
}
@media (max-width: 600px) {
  .nav-menu {
    gap: 16px;
    font-size: 0.9rem;
  }
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a:hover { color: var(--primary); }

/* ── Buttons ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline img { height: 20px; width: auto; }

/* ── Breadcrumbs ── */
.bc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
}
.bc a {
  color: var(--text-muted);
  text-decoration: none;
}
.bc a:hover { color: var(--primary); text-decoration: underline; }

/* ── Page Wrap ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

/* ── Hero Panel ── */
.panel-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.panel-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}
.company-title {
  font-size: 2rem;
  margin-bottom: 4px;
  color: var(--primary);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}
.company-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.badge {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
}
.badge.ba { background: #E6F6D6; color: #1A3C30; border-color: #D3F89A; }
.badge.ro { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.badge.bo { background: #fef3c7; color: #92400e; border-color: #fde68a; }

.panel-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.panel-item label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.panel-item .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Info Grid ── */
.sec-title {
  font-size: 1.4rem;
  margin: 60px 0 24px;
  color: var(--primary);
  border-left: 6px solid var(--primary);
  padding-left: 20px;
  font-family: 'Lora', serif;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-data {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-header {
  background: #f9fbf1;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-body {
  padding: 10px 24px 24px;
}
.info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  gap: 15px;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  width: 150px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}
.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ── Tables ── */
.table-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.corporate-table {
  width: 100%;
  border-collapse: collapse;
}
.corporate-table th {
  background: var(--primary);
  padding: 16px 24px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
}
.corporate-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.corporate-table tr:hover td {
  background: #fdfcf3;
}
.corporate-table tr:last-child td { border-bottom: none; }
.corporate-table td strong { color: var(--primary); font-weight: 800; }

/* ── Alert Info ── */
.alert-info {
  background: #fdfcf3;
  color: var(--text-muted);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.alert-info i {
  font-size: 1.25rem;
  color: var(--primary);
  opacity: 0.6;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.faq-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ── Map ── */
.map-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

/* ── Copy Actions ── */
.copy-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-copy:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f7ff;
}
.btn-copy svg { width: 14px; height: 14px; }

/* ── Footer ── */
footer {
  padding: 80px 20px;
  background: #f9fafb;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer nav {
  justify-content: center;
  margin-bottom: 24px;
}
footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Promo Banner (Cambly) ── */
.promo-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; /* Padronizado com o site */
  padding: 32px;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm); /* Padronizado com o site */
  position: relative;
  overflow: hidden;
}

.cambly-banner { background: #f0f9ff; }

/* Sponsored Label */
.promo-sponsored-label {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.7rem; /* Aumentado para 11px+ */
  font-weight: 800;
  color: #94a3b8;
  opacity: 1; /* Removido transparência para maior visibilidade */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.promo-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.promo-content h3 { font-size: 1.5rem; margin-bottom: 8px; line-height: 1.2; color: var(--primary); }
.promo-content p { color: #4b5563; margin-bottom: 16px; font-size: 0.9rem; line-height: 1.5; }

.promo-benefits { list-style: none; margin-bottom: 20px; display: flex; gap: 15px; flex-wrap: wrap; }
.promo-benefits li { 
  font-size: 0.8rem; 
  margin-bottom: 0; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  font-weight: 600;
  color: #4b5563;
}

/* (Features grid moved and consolidated below) */
.promo-benefits i { color: #fca311; }

.promo-pricing-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.promo-price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-details { display: flex; flex-direction: column; }
.price-old { font-size: 0.75rem; color: #94a3b8; text-decoration: line-through; margin-bottom: -2px; }
.price-new { display: flex; align-items: baseline; gap: 3px; }
.price-new .amount { font-size: 1.85rem; font-weight: 900; color: #059669; }
.price-new .term { font-size: 0.8rem; color: #6b7280; font-weight: 600; }

.promo-price .badge { 
  background: #dcfce7; 
  color: #166534; 
  padding: 4px 10px; 
  border-radius: 4px; 
  font-size: 0.65rem; 
  font-weight: 800;
  margin: 0;
  border: 1px solid #bbf7d0;
  box-shadow: none;
}

.promo-cta {
  background: #fca311;
  color: #111;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  transition: all 0.2s;
  text-align: center;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(252, 163, 17, 0.15);
}
.promo-cta:hover { 
  background: #f59e0b; 
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(252, 163, 17, 0.25);
}

.disclaimer { font-size: 0.65rem; color: var(--text-muted); margin-top: 0; font-weight: 500; }

.promo-image {
  background: #f3f4f6;
  height: 100%;
  min-height: 250px;
  border-radius: 8px;
  background-image: url('https://images.unsplash.com/photo-1543269664-76bc3997d9ea?auto=format&fit=crop&q=80&w=800');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .promo-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .promo-image { order: -1; min-height: 200px; display: none; }
  .promo-sponsored-label { top: 10px; right: 15px; }
}

/* ── Website Builder Banner (Hostinger) ── */
.hostinger-banner {
  background: #f9f8ff; /* Fundo lilás levemente diferente, como pedido */
}

.hostinger-banner .promo-sponsored-label { color: var(--text-muted); opacity: 0.8; font-weight: 700; }



.hostinger-cta { 
  background: #673de6 !important; 
  color: white !important; 
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
  box-shadow: 0 10px 20px -5px rgba(103, 61, 230, 0.4) !important;
}
.hostinger-cta:hover { 
  background: #5a32c7 !important; 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -8px rgba(103, 61, 230, 0.5) !important;
}

.cta-trust { font-size: 0.75rem; color: #059669; font-weight: 700; display: flex; align-items: center; gap: 6px; margin-top: 12px; }

.plus-months { 
  font-size: 0.8rem; 
  color: #673de6; 
  font-weight: 900; 
  text-transform: uppercase; 
  margin-top: 6px;
  background: #f5f3ff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}

.hostinger-image {
  background-image: url('/assets/hostinger-promo.png');
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .hostinger-banner {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.6s ease-out forwards; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .data-grid { grid-template-columns: 1fr; }
  .promo-banner { 
    grid-template-columns: 1fr; 
    padding: 30px; 
    margin: 40px 0;
  }
  .promo-image { 
    display: block !important; 
    order: -1; 
    height: 140px; 
    margin-bottom: 24px; 
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
  }
  .panel-hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .header-inner { 
    flex-direction: column; 
    gap: 15px; 
    padding: 15px 20px;
  }
  .header-search { max-width: 100%; width: 100%; order: 3; }
  nav { width: 100%; justify-content: center; order: 2; flex-wrap: wrap; }
  nav a { font-size: 0.8rem; }

  .page-wrap { padding: 20px 15px 60px; }
  
  .company-title { font-size: 1.4rem; }
  .panel-hero { padding: 20px; }
  .panel-hero-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .badge { align-self: flex-start; }
  .panel-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .info-row { flex-direction: column; gap: 4px; padding: 12px 0; }
  .info-label { width: 100%; font-size: 0.75rem; color: var(--text-muted); }
  .info-value { width: 100%; font-size: 0.95rem; }

  .promo-banner { padding: 32px 24px; }
  .promo-brand { display: flex; justify-content: center; }
  .promo-brand img { height: 32px; margin-bottom: 32px; }
  .promo-content h3 { font-size: 1.4rem; margin-bottom: 12px; text-align: center; }
  .promo-content p { text-align: center; }
  .promo-benefits { justify-content: center; }
  .promo-price { width: 100%; justify-content: center; text-align: center; margin-bottom: 24px; }
  .promo-pricing-cta { flex-direction: column; align-items: center; gap: 0; }
  .promo-price .amount { font-size: 2.5rem; }
  .promo-cta { width: 100%; padding: 20px; font-size: 1.1rem; }
  .cta-trust { justify-content: center; }
  .cta-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .promo-image { height: 120px; margin-bottom: 20px; }
  .badge-discount { top: 10px; left: 10px; font-size: 0.65rem; padding: 4px 8px; }
  .promo-urgency { display: none; }

  .bc { font-size: 0.7rem; overflow-x: auto; white-space: nowrap; padding-bottom: 5px; }
}

/* ── Homepage Specific ── */
.hero-section {
  padding: 80px 20px;
  background: var(--bg);
  border-bottom: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content {
  text-align: left;
}
.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.05;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero-section p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 0 40px 0;
  font-weight: 500;
  font-family: 'Nunito Sans', sans-serif;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 60, 48, 0.12);
  aspect-ratio: 0.85;
  background-image: url('/assets/images/hero_brazilian_pro.png');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-image:hover {
  transform: scale(1.02);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,48,0.2), transparent);
}

.search-premium {
  max-width: 100%;
  position: relative;
  background: white;
  padding: 8px;
  display: flex;
  gap: 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(26, 60, 48, 0.08);
}
.search-premium input {
  flex: 1;
  border: none;
  padding: 16px 20px 16px 48px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  outline: none;
  font-weight: 500;
  color: var(--text);
  background: transparent;
}
.search-premium i.fa-search {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0.6;
}
.search-premium button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}
.search-premium button:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

.social-proof {
  padding: 80px 20px;
  background: var(--bg);
  text-align: center;
}
.social-proof h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 700;
}
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-wall a {
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.logo-wall a:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-5px);
}
.logo-wall img {
  height: 32px;
  width: auto;
  max-width: 150px;
}

/* ── Features Section ── */
.features-section {
  padding: 100px 20px;
  background: white;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  padding: 48px 32px;
  background: #fdfcf3;
  border-radius: var(--radius-lg);
  border: 1px solid #f0f4e8;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 60, 48, 0.06);
}
.feature-card i {
  font-size: 2rem;
  color: #1A3C30;
  margin-bottom: 24px;
  display: block;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Popular Section ── */
.popular-section {
    padding: 100px 20px;
    background: #f9fbf1;
}
.popular-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.popular-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid #e1e9db;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.popular-card img {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
    filter: grayscale(0.85);
}
.popular-card:hover img {
    filter: grayscale(0);
}
.popular-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--primary);
}
.btn-popular {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-full);
    background: #f0f4e8;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: block;
}
.popular-card:hover .btn-popular {
    background: var(--primary);
    color: white;
}

.home-stats {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26, 60, 48, 0.04);
}
.stat-box:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.stat-box i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}
.stat-box .number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.stat-box .label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section { padding: 60px 20px; }
  .search-premium { flex-direction: column; padding: 12px; box-shadow: none; border: 1px solid var(--border); background: #fdfcff; }
  .search-premium input { width: 100%; border-radius: 10px; margin-bottom: 8px; padding-left: 50px; }
  .search-premium i.fa-search { top: 40px; } /* Mantém a lupa no centro vertical do input apenas */
  .search-premium button { padding: 18px; width: 100%; }
  
  .home-stats { grid-template-columns: 1fr; gap: 20px; padding: 40px 20px; }
  
  .logo-wall { gap: 32px; justify-content: center; }
  .logo-wall a { opacity: 0.95; filter: none; } /* Mais visibilidade e cor de marca */
  .logo-wall img { height: 38px; } /* Quase o dobro do tamanho anterior */
}
/* ── Social Share ── */
/* ── Hero Actions (Copy, Call, Share) ── */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.copy-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-muted);
}
.btn-action:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f8fafc;
}

.btn-call {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  font-size: 1rem !important;
  box-shadow: 0 4px 6px -1px rgba(31, 58, 95, 0.2);
}
.btn-call:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(31, 58, 95, 0.3);
}

.share-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.share-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.share-link:hover {
  transform: scale(1.15) translateY(-2px);
}
.share-link.wa { background: #25D366; }
.share-link.tg { background: #0088cc; }
.share-link.tw { background: #000000; }

.mobile-only { display: none; }

@media (max-width: 600px) {
  .mobile-only { display: inline-flex; }
  .hero-actions { gap: 12px; }
  .btn-action { width: 100%; padding: 12px; }
  .copy-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .share-group { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Geographic Listings (States/Cities) ── */
.bc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; font-weight: 500; }
.bc a { color: var(--text-muted); text-decoration: none; border-bottom: 1px solid transparent; }
.bc a:hover { border-bottom-color: var(--primary); color: var(--primary); }
.city-hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 32px; color: #fff; padding: 80px 40px; text-align: center; margin-bottom: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.city-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -0.02em; }
.city-hero p { font-size: 1.15rem; color: #94a3b8; max-width: 750px; margin: 0 auto 35px; line-height: 1.6; }
.search-box { background: #fff; padding: 8px; border-radius: 20px; display: inline-flex; width: 100%; max-width: 550px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.search-box input { flex: 1; border: none; padding: 15px 25px; font-size: 1.1rem; border-radius: 16px; outline: none; color: #000; }
.search-box button { background: var(--primary); color: #fff; border: none; padding: 0 35px; border-radius: 16px; font-weight: 700; cursor: pointer; transition: 0.2s; font-size: 1rem; }
.search-box button:hover { background: var(--primary-hover); transform: scale(1.02); }
.seo-text { background: #fff; border-radius: 24px; padding: 50px; border: 1px solid #e2e8f0; line-height: 1.8; font-size: 1.1rem; color: #334155; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.seo-text h2, .seo-text h3 { color: var(--text); font-weight: 800; margin-top: 40px; }
.seo-text p { margin-bottom: 20px; }
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.state-card { background: #fff; border: 1px solid #e2e8f0; padding: 30px 20px; border-radius: 20px; text-align: center; text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.1rem; transition: 0.3s; }
.state-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1); color: var(--primary); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.city-link { font-size: 0.95rem; color: #475569; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
.city-link:hover { color: var(--primary); font-weight: 600; }
.city-link i { color: #cbd5e1; font-size: 0.75rem; }
@media (max-width: 768px) { .city-hero { padding: 50px 20px; } .city-hero h1 { font-size: 2.2rem; } .seo-text { padding: 30px 20px; } }

/* ── Detail Page Specific ── */
.nav-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-nav-map {
  flex: 1;
  justify-content: center;
  min-width: 200px;
  height: 56px;
}

.footer-notice-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-notice {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-notice p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-notice i {
  color: var(--primary);
  opacity: 0.4;
  font-size: 1rem;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .nav-buttons { flex-direction: column; }
  .btn-nav-map { min-width: 100%; }
}

/* ── Human Highlight Section ── */
.human-highlight {
  padding: 120px 20px;
  background: white;
}
.highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.highlight-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26, 60, 48, 0.1);
  aspect-ratio: 0.8;
  background-image: url('/assets/images/feature_professional_woman.png');
  background-size: cover;
  background-position: center;
}
.highlight-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.highlight-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.glass-info {
  background: rgba(211, 248, 154, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(211, 248, 154, 0.3);
  padding: 32px;
  border-radius: 24px;
  margin-top: 40px;
}
.glass-info h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .highlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .highlight-image { aspect-ratio: 1; }
  .highlight-content { text-align: center; }
  .highlight-content h2 { font-size: 2rem; }
}
