/* ═══════════════════════════════════════════════
   BASE — Reset · Variáveis · Tipografia
   visita.top
═══════════════════════════════════════════════ */

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

:root {
  /* Azul Carneiro (extraído do accent do site Carneiro) */
  --blue:        #1a2540;
  --blue-dark:   #1a2540;
  --blue-light:  #e8f3fd;
  --blue-mid:    #d0e8fa;

  /* Neutros claros */
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-50:     #f4f6f9;
  --gray-100:    #e8ecf2;
  --gray-300:    #b8c4d4;
  --gray-500:    #7a8ba0;
  --gray-700:    #3d4f63;
  --gray-900:    #1a2535;

  /* Night Sky (footer Carneiro) */
  --night-sky:    #121826;
  --bg-mid:       #161f33;
  --bg-card:      #1a2540;
  --slate-silver: #CBD5E1;
  --silver-snow:  #F8FAFC;
  --border-dark:  rgba(203,213,225,.1);

  /* Tipografia */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaçamento */
  --r:     10px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(45,125,210,.10);
  --sh-md: 0 8px 32px rgba(45,125,210,.14);
  --sh-lg: 0 20px 60px rgba(45,125,210,.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--gray-900);
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utilitários ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r);
  letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-100);
}
.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive base ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 20px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════
   NAV — Header fixo
   visita.top
═══════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--blue);
}

/* ── Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--gray-50);
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--gray-50);
  color: var(--blue);
}

.nav-dropdown-toggle svg {
  transition: transform .2s;
}
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 200px;
  padding: 6px;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--gray-700);
  border-radius: 7px;
  transition: background .15s, color .15s;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* ── Ações direita ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.nav-actions .btn-login:hover {
  background: var(--gray-50);
  color: var(--blue);
}

/* ── Hamburger mobile ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--gray-50); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 24px 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--gray-100);
}

.nav-mobile.open { display: flex; }

.nav-mobile a, .nav-mobile .mob-toggle {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 13px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s, color .2s;
}

.nav-mobile a:hover, .nav-mobile .mob-toggle:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-mobile .mob-sub {
  padding-left: 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile .mob-sub.open { display: flex; }
.nav-mobile .mob-sub a {
  font-size: 14px;
  padding: 10px 14px;
}

.nav-mobile-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 12px 0;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.nav-mobile-actions .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions .btn-login,
  .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════
   HERO — Seção principal
   visita.top
═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Fundo decorativo estilo minhavisita */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: .6;
}

.hero-bg-circle.c1 {
  width: 480px; height: 480px;
  left: -120px; top: 50%;
  transform: translateY(-50%);
}

.hero-bg-circle.c2 {
  width: 280px; height: 280px;
  right: 15%; top: 10%;
  opacity: .3;
}

.hero-bg-circle.c3 {
  width: 160px; height: 160px;
  right: 8%; bottom: 15%;
  background: var(--blue-mid);
  opacity: .4;
}

/* Grid sutil */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .35;
}

/* ── Layout ── */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 72px;
  width: 100%;
}

/* ── Lado esquerdo ── */
.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ── Checklist ── */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
}

.hero-check-icon svg {
  width: 12px; height: 12px;
}

/* ── CTAs ── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-hero-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  font-size: 15px;
  padding: 14px 28px;
}
.btn-hero-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,125,210,.3);
}

.btn-hero-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-100);
  font-size: 15px;
  padding: 14px 28px;
}
.btn-hero-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

/* ── Lado direito — mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Card principal — "tela do app/dashboard" */
.mockup-desktop {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(45,125,210,.18), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  width: 100%;
}

.mockup-bar {
  background: var(--gray-900);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot.red   { background: #ff5f56; }
.mockup-dot.yel   { background: #ffbd2e; }
.mockup-dot.grn   { background: #27c93f; }

.mockup-url {
  flex: 1;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  height: 22px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.mockup-url span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

.mockup-body {
  padding: 20px;
  background: var(--gray-50);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Simulação de mapa/interface */
.mockup-map {
  background: #e8eff8;
  border-radius: 10px;
  height: 140px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.mockup-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,125,210,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,125,210,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.mockup-pin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
}
.mockup-pin::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  transform: rotate(45deg);
}
.mockup-pin.p1 { top: 25%; left: 30%; }
.mockup-pin.p2 { top: 50%; left: 62%; background: #22c55e; }
.mockup-pin.p3 { top: 15%; left: 70%; background: #f59e0b; }

/* Linha de rota */
.mockup-route {
  position: absolute;
  top: 38%; left: 44%;
  width: 20%; height: 14%;
  border-top: 2px dashed var(--blue);
  border-right: 2px dashed var(--blue);
  opacity: .5;
}

/* Cards da interface */
.mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mockup-card {
  background: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid var(--gray-100);
}

.mockup-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.mockup-card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
}

.mockup-card-value.blue  { color: var(--blue); }
.mockup-card-value.green { color: #22c55e; }

.mockup-card-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Card mobile flutuante */
.mockup-mobile {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 140px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  overflow: hidden;
  padding-bottom: 8px;
}

.mob-notch {
  background: var(--gray-900);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-notch-bar {
  width: 48px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
}

.mob-content {
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mob-visit-item {
  background: var(--gray-50);
  border-radius: 6px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mob-visit-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mob-visit-text {
  font-size: 9px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.3;
}

.mob-btn-check {
  display: block;
  margin: 8px 10px 0;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  border-radius: 6px;
}

/* ── Responsive hero ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 48px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .mockup-mobile { right: -10px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .mockup-mobile { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   SECTIONS — Features · Benefícios · CTA · Social Proof
   visita.top
═══════════════════════════════════════════════ */

/* ── Padrão de seção ── */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-blue {
  background: var(--blue);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -1px;
}

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

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  font-weight: 300;
}

/* ── LOGOS / SOCIAL PROOF ── */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .45;
  transition: opacity .2s;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
}

.logo-pill:hover { opacity: .8; }

.logo-pill-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--gray-300);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-mid);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Linha conectora */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue), var(--blue-mid));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  font-weight: 300;
}

/* ── BENEFÍCIOS — layout 2 colunas com visual ── */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
}

.benefit-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  font-weight: 300;
}

/* Visual lateral benefícios */
.benefits-visual {
  position: relative;
}

.benefits-card-main {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-lg);
}

.bcm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bcm-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}

.bcm-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #dcfce7;
  color: #16a34a;
}

.bcm-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.bcm-stat-item {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 14px;
}

.bcm-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 3px;
}

.bcm-stat-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}

.bcm-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bcm-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bcm-bar-label {
  font-size: 12px;
  color: var(--gray-500);
  width: 80px;
  flex-shrink: 0;
}

.bcm-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.bcm-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  transition: width 1.2s ease;
}

.bcm-bar-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  width: 32px;
  text-align: right;
}

/* Floating badge */
.benefits-badge-float {
  position: absolute;
  bottom: -18px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bbf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #dcfce7;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.bbf-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
}

.bbf-text span {
  font-size: 11px;
  color: var(--gray-500);
}

/* ── DEPOIMENTOS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  color: #f59e0b;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.author-role {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
}

/* ── CTA FINAL ── */
.cta-section {
  background: var(--night-sky);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.btn-cta-white {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
  font-size: 15px;
  padding: 14px 32px;
  font-weight: 700;
}
.btn-cta-white:hover {
  background: var(--silver-snow);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  font-size: 15px;
  padding: 14px 32px;
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ── Responsive sections ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .benefits-wrap { grid-template-columns: 1fr; gap: 40px; }
  .benefits-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .logos-row { gap: 24px; }
}

/* ═══════════════════════════════════════════════
   FOOTER — Mesmo estilo Carneiro/Arpia
   visita.top
═══════════════════════════════════════════════ */

.site-footer {
  background: var(--night-sky);
  border-top: 1px solid var(--border-dark);
}

/* ── Bloco principal ── */
.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Brand column */
.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px; height: 32px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--silver-snow);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-logo-name small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--slate-silver);
  margin-top: 3px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(203,213,225,.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(203,213,225,.08);
  border: 1px solid var(--border-dark);
  display: grid;
  place-items: center;
  color: var(--slate-silver);
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(203,213,225,.15);
  border-color: rgba(203,213,225,.25);
  color: var(--silver-snow);
}

/* Link columns */
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--slate-silver);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a,
.footer-col span {
  font-size: 13px;
  color: rgba(203,213,225,.5);
  text-decoration: none;
  font-weight: 300;
  transition: color .2s;
}

.footer-col a:hover { color: var(--silver-snow); }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(203,213,225,.35);
  font-weight: 300;
  letter-spacing: .3px;
}

.footer-copy strong {
  color: rgba(203,213,225,.55);
  font-weight: 400;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(203,213,225,.35);
  text-decoration: none;
  font-weight: 300;
  transition: color .2s;
}

.footer-legal a:hover { color: var(--silver-snow); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}