/* =====================================================
   Vista Informática — Design System
   ===================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Proteção de conteúdo --- */
body { -webkit-user-select: none; -moz-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, textarea, [contenteditable] { -webkit-user-select: text; user-select: text; }

/* --- Tokens --- */
:root {
  --primary:        #1B3C73;
  --primary-light:  #2E5FA3;
  --primary-dark:   #0F2248;
  --accent:         #E8740A;
  --accent-light:   #F5963A;
  --accent-dark:    #C05C00;

  --bg:      #F7F9FC;
  --bg-alt:  #EEF3FC;
  --surface: #FFFFFF;
  --text:    #1A1F2E;
  --muted:   #5F6B7C;
  --light:   #9CA3AF;
  --border:  #DDE4EF;

  --green:       #16A34A;
  --green-light: #DCFCE7;

  --h-font: 'Barlow', system-ui, sans-serif;
  --b-font: 'Inter', system-ui, sans-serif;

  --s1: 0 1px 4px rgba(27,60,115,0.07);
  --s2: 0 4px 16px rgba(27,60,115,0.10);
  --s3: 0 8px 32px rgba(27,60,115,0.14);

  --r1: 6px;
  --r2: 12px;
  --r3: 20px;

  --w: 1200px;
}

/* --- Base --- */
body {
  font-family: var(--b-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--h-font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
p { color: var(--muted); }
strong { color: var(--text); }

/* --- Layout --- */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
}
section { padding: 80px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r1);
  font-family: var(--h-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,116,10,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  font-family: var(--h-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-primary  { background: var(--bg-alt); color: var(--primary); }
.badge-accent   { background: rgba(232,116,10,0.10); color: var(--accent-dark); }
.badge-green    { background: var(--green-light); color: var(--green); }

/* --- Section header --- */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--h-font);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* --- Card --- */
.card {
  background: var(--surface);
  border-radius: var(--r2);
  border: 1px solid var(--border);
  padding: 28px;
  transition: all 0.22s;
  position: relative;
}
@media (hover: hover) {
  .card:hover {
    box-shadow: var(--s3);
    border-color: rgba(27,60,115,0.14);
    transform: translateY(-3px);
    z-index: 2;
  }
  .card-img-card:hover .card-cover img {
    transform: scale(1.05);
  }
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: var(--r1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p  { font-size: 14px; line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  transition: color 0.15s;
}
.card-link:hover { color: var(--accent); }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #232323;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--r1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.14s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-family: var(--h-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
}

/* =====================================================
   HERO (home only)
   ===================================================== */
.hero {
  background: var(--primary-dark);
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,40,0.92) 0%, rgba(10,18,40,0.75) 55%, rgba(10,18,40,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46,95,163,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 5px 14px;
  font-family: var(--h-font);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.trust-item svg { color: var(--accent-light); flex-shrink: 0; }

/* Hero visual — stat cards */
.hero-visual {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.stat-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r2);
  color: #fff;
}
.stat-main {
  width: 200px;
  padding: 24px 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.stat-main .stat-num {
  font-family: var(--h-font);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}
.stat-main .stat-label {
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 4px;
}
.stat-sm {
  padding: 18px 20px;
  width: 170px;
}
.stat-sm .stat-icon {
  color: var(--accent-light);
  margin-bottom: 8px;
}
.stat-sm strong {
  font-family: var(--h-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.stat-sm span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.stat-card-1 { top: 20px; right: 20px; }   /* topo direito */
.stat-card-2 { bottom: 24px; left: 20px; }  /* base esquerdo */
.stat-card-3 { bottom: 24px; right: 20px; } /* base direito */

/* Círculo decorativo no centro */
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

/* =====================================================
   STRIP DE DIFERENCIAIS
   ===================================================== */
.diferenciais {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dif-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.dif-item:last-child { border-right: none; }
.dif-ico {
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border-radius: var(--r1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.dif-text strong {
  display: block;
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.dif-text span {
  font-size: 12px;
  color: var(--muted);
}

/* =====================================================
   CARDS COM IMAGEM
   ===================================================== */
.card-img-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-cover {
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 { font-size: 17px; margin-bottom: 8px; }
.card-body p  { font-size: 14px; line-height: 1.6; flex: 1; }

/* =====================================================
   SOBRE
   ===================================================== */
.sobre-section { background: var(--bg-alt); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-img {
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--s3);
}
.sobre-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.sobre-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sobre-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre-img img { height: 280px; }
}

/* =====================================================
   SERVIÇOS GRID
   ===================================================== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =====================================================
   COMO FUNCIONA
   ===================================================== */
.como-funciona { background: var(--bg-alt); }
.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-track::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--border);
}
.step { padding: 0 28px; text-align: center; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p  { font-size: 14px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner { background: var(--accent); padding: 64px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  margin-bottom: 6px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--h-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-q:hover { color: var(--primary); }
.faq-q .chevron { flex-shrink: 0; transition: transform 0.22s; }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--primary-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo .logo-name  { color: #fff; }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 14px 0 22px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-row svg { color: var(--accent-light); flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--h-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.14s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* =====================================================
   SOCIAL LINKS (footer)
   ===================================================== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.18s;
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-ping 2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-ping {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.52);
}
.wa-float:hover::before {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* =====================================================
   PAGE HEADER (páginas internas)
   ===================================================== */
.page-header {
  background: var(--primary);
  margin-top: 68px;
  padding: 56px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.breadcrumb a {
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.14s;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span {
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
}
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 12px; }
.page-header h1 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 10px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r1);
  font-family: var(--b-font);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.14s, box-shadow 0.14s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(27,60,115,0.09);
}
textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================================================
   UTILITY
   ===================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.surface { background: var(--surface); }
.alt-bg { background: var(--bg-alt); }

/* Destaque list */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.check-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* =====================================================
   AVALIAÇÕES GOOGLE
   ===================================================== */
.reviews-section { background: var(--bg-alt); }
.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 14px 24px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-score {
  font-family: var(--h-font);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.rating-stars { display: flex; gap: 2px; color: #FBBC04; }
.rating-count {
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 14px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--r2);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-name {
  font-family: var(--h-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.review-when {
  font-size: 12px;
  color: var(--light);
  display: block;
  margin-top: 2px;
}
.review-card-stars { display: flex; gap: 2px; color: #FBBC04; margin-bottom: 10px; }
.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-google-icon { position: absolute; top: 20px; right: 20px; opacity: 0.35; }

/* =====================================================
   AVALIAÇÕES 3D MARQUEE
   ===================================================== */
.reviews-3d-wrap {
  position: relative;
  height: 440px;
  overflow: hidden;
  margin-top: 40px;
}
.reviews-3d-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  transform: rotateX(15deg);
  padding: 10px;
}
.t-col { width: 220px; flex-shrink: 0; overflow: hidden; }
.t-col-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: t-scroll-down 34s linear infinite;
  will-change: transform;
}
.t-col-track.up {
  animation-name: t-scroll-up;
  animation-duration: 38s;
}
.t-col:hover .t-col-track { animation-play-state: paused; }
@keyframes t-scroll-down {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes t-scroll-up {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 14px 16px;
  box-shadow: var(--s1);
  flex-shrink: 0;
}
.t-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.t-name {
  font-family: var(--h-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  display: block;
}
.t-stars { color: #FBBC04; font-size: 10px; letter-spacing: 1px; display: block; margin-top: 2px; }
.t-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Gradient fade top/bottom */
.reviews-3d-wrap::before,
.reviews-3d-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 28%;
  pointer-events: none;
  z-index: 2;
}
.reviews-3d-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-alt) 0%, transparent 100%);
}
.reviews-3d-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-alt) 0%, transparent 100%);
}
/* Gradient fade left/right */
.t-grad-l, .t-grad-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 20%;
  pointer-events: none;
  z-index: 2;
}
.t-grad-l { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.t-grad-r { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
@media (prefers-reduced-motion: reduce) {
  .t-col-track, .t-col-track.up { animation: none; }
}
@media (max-width: 900px) {
  .reviews-3d-wrap { height: 380px; }
  .reviews-3d-inner {
    transform: rotateX(12deg);
    gap: 10px;
    justify-content: center;
  }
  .t-col { width: calc(33.33% - 7px); max-width: 200px; }
  .t-col:nth-child(4) { display: none; }
}
@media (max-width: 640px) {
  .reviews-3d-wrap { height: 320px; }
  .reviews-3d-inner {
    transform: rotateX(8deg);
    gap: 10px;
    justify-content: center;
  }
  .t-col { width: calc(50% - 5px); max-width: 180px; }
  .t-col:nth-child(3),
  .t-col:nth-child(4) { display: none; }
}

/* =====================================================
   ANIMAÇÕES — HERO ENTRANCE
   ===================================================== */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label  { animation: hero-in 0.45s ease both; animation-delay: 0.05s; }
.hero-title  { animation: hero-in 0.45s ease both; animation-delay: 0.13s; }
.hero-body   { animation: hero-in 0.45s ease both; animation-delay: 0.22s; }
.hero-ctas   { animation: hero-in 0.45s ease both; animation-delay: 0.30s; }
@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero-title, .hero-body, .hero-ctas { animation: none; }
}

/* =====================================================
   ANIMAÇÕES — SCROLL REVEAL
   ===================================================== */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js-reveal .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger — diferenciais */
.js-reveal .dif-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.js-reveal .dif-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.js-reveal .dif-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
/* Stagger — serviços */
.js-reveal .servicos-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.js-reveal .servicos-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.js-reveal .servicos-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.js-reveal .servicos-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.js-reveal .servicos-grid .reveal:nth-child(6) { transition-delay: 0.40s; }
/* =====================================================
   STEPS — ANIMAÇÃO SEQUENCIAL
   ===================================================== */
.js-reveal .steps-track .step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-reveal .steps-track .step.step-lit {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal .steps-track .step-num {
  background: #8FA3C5;
  transition: background 0.4s ease, box-shadow 0.45s ease;
}
.js-reveal .steps-track .step.step-lit .step-num {
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(27,60,115,0.10), 0 4px 20px rgba(27,60,115,0.28);
  animation: step-num-pop 0.55s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes step-num-pop {
  0%   { transform: scale(0.72); }
  65%  { transform: scale(1.20); }
  100% { transform: scale(1); }
}
/* Linha de progresso animada */
.steps-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  width: 0;
  height: 2px;
  background: var(--primary);
  z-index: 1;
}
.steps-track.steps-progress-2::before {
  width: calc(100% / 3);
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1) 0.1s;
}
.steps-track.steps-progress-3::before {
  width: calc(100% * 2 / 3);
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1) 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal,
  .js-reveal .reveal.revealed { opacity: 1; transform: none; transition: none; }
  .js-reveal .steps-track .step { opacity: 1; transform: none; transition: none; }
  .js-reveal .steps-track .step-num { background: var(--primary); transition: none; }
  .steps-track.steps-progress-2::before,
  .steps-track.steps-progress-3::before { transition: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet largo / laptop pequeno: oculta telefone no nav pra ganhar espaço */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

/* 1024px: ajustes de grid sem esconder hero */
@media (max-width: 1024px) {
  .hero-grid { max-width: 780px; }

  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-item:nth-child(2) { border-right: none; }
  .dif-item:nth-child(3) { border-top: 1px solid var(--border); }
  .dif-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* 900px: hamburger + hero coluna única */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 768px) {
  .container { padding: 0 32px; }
  section { padding: 56px 0; }

  .hero h1 { font-size: clamp(28px, 6vw, 38px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 14px; }

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

  .steps-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-track::after,
  .steps-track::before { display: none; }
  .step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 28px;
  }
  .step-num { margin: 0; width: 48px; height: 48px; font-size: 18px; flex-shrink: 0; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .google-rating-summary { gap: 10px; padding: 12px 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-item { border-right: none; border-bottom: 1px solid var(--border); }
  .dif-item:last-child { border-bottom: none; }
}

/* =====================================================
   EFEITOS PREMIUM ($10k) — home
   Luz dourada nas bordas, spotlight no hover, scan lines
   Tudo aditivo. Degrada com elegância sem JS.
   ===================================================== */
@property --beam-a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
:root {
  --beam:      #22C55E;
  --beam-soft: rgba(34,197,94,0.85);
}

/* ---- Hero: benefícios sobem em cascata ---- */
.hero-trust .trust-item { animation: hero-in 0.5s ease both; }
.hero-trust .trust-item:nth-child(1) { animation-delay: 0.40s; }
.hero-trust .trust-item:nth-child(2) { animation-delay: 0.48s; }
.hero-trust .trust-item:nth-child(3) { animation-delay: 0.56s; }
.hero-trust .trust-item:nth-child(4) { animation-delay: 0.64s; }

/* ---- Luz verde percorrendo a borda dos cards ---- */
.servicos-track .card-img-card { position: relative; }

.servicos-track .card-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: conic-gradient(from var(--beam-a),
      transparent 0deg, transparent 210deg,
      var(--beam-soft) 250deg,
      #fff 272deg,
      var(--beam-soft) 294deg,
      transparent 334deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  animation: beam-travel 5.5s linear infinite;
}
@keyframes beam-travel { to { --beam-a: 360deg; } }

/* delays escalonados: a luz "viaja" de um card pro outro */
.servicos-set .card-img-card:nth-child(1)::after { animation-delay: 0s; }
.servicos-set .card-img-card:nth-child(2)::after { animation-delay: -0.9s; }
.servicos-set .card-img-card:nth-child(3)::after { animation-delay: -1.8s; }
.servicos-set .card-img-card:nth-child(4)::after { animation-delay: -2.7s; }
.servicos-set .card-img-card:nth-child(5)::after { animation-delay: -3.6s; }
.servicos-set .card-img-card:nth-child(6)::after { animation-delay: -4.5s; }


/* texto sempre acima dos efeitos */
.servicos-track .card-img-card .card-body,
.servicos-track .card-img-card .card-cover { position: relative; z-index: 4; }

/* ---- Scan lines nas divisórias ---- */
@keyframes scan-x {
  from { transform: translateX(-180px); }
  to   { transform: translateX(calc(100vw + 180px)); }
}

/* pulso de luz na linha que conecta as etapas do método */
.steps-track::after { animation: line-pulse 4.5s ease-in-out infinite; }
@keyframes line-pulse {
  0%, 100% { opacity: 0.55; box-shadow: none; }
  50%      { opacity: 1; box-shadow: 0 0 10px rgba(245,150,58,0.55); }
}

/* linha de scan no topo da seção "Como funciona" */
.como-funciona { position: relative; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .hero-trust .trust-item { animation: none; }
  .servicos-track .card-img-card::after { animation: none; opacity: 0.5; }
  .dif-track { animation: none; }
  .steps-track::after { animation: none; }
}

/* =====================================================
   FAIXA DE DIFERENCIAIS — marquee infinito (estilo ticker)
   ===================================================== */
.diferenciais {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.dif-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dif-track {
  display: flex;
  width: max-content;
  animation: dif-scroll 45s linear infinite;
}
.dif-set {
  display: flex;
  flex-shrink: 0;
}
.diferenciais .dif-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  border-right: 1px solid var(--border) !important;
  border-bottom: none !important;
  border-top: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes dif-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dif-track { animation: none; }
  .dif-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dif-set[aria-hidden="true"] { display: none; }
}

/* ---- Esteira de clientes: título + nomes de empresa ---- */
.dif-clients-label {
  text-align: center;
  font-family: var(--h-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  padding: 22px 16px 2px;
}
.dif-item.client {
  font-family: var(--h-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.005em;
  padding: 22px 52px;
}
.dif-item.client.muted {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* =====================================================
   SERVIÇOS — esteira contínua de cards (sem pause no hover)
   ===================================================== */
.servicos-section { overflow: hidden; }
.servicos-section .section-header { margin-bottom: 36px; }
.servicos-marquee {
  overflow: hidden;
  padding: 10px 0 4px;
  cursor: grab;
  touch-action: pan-y;          /* arrasto horizontal é nosso; vertical rola a página */
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.servicos-marquee.dragging { cursor: grabbing; }
.servicos-track {
  display: flex;
  width: max-content;
  will-change: transform;       /* posição controlada por JS: anda sozinha + arrastar */
}
.servicos-set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
.servicos-track .card-img-card {
  width: 340px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .servicos-track .card-img-card { width: 280px; }
}

/* =====================================================
   BOTÕES MODERNOS — sheen sutil no hover (estilo tech)
   ===================================================== */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.2s cubic-bezier(.34,1.45,.5,1),
              box-shadow 0.22s ease,
              background 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease;
}
/* feixe de luz que varre o botão sozinho, em loop contínuo (fica abaixo do texto) */
.btn-primary::before,
.btn-whatsapp::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: btn-sheen 4.5s ease-in-out infinite;
}
.btn-whatsapp::before { animation-delay: 1.4s; }   /* dessincroniza dos laranjas */
@keyframes btn-sheen {
  0%, 66% { left: -130%; }   /* pausa entre as passadas */
  100%    { left: 150%; }
}

/* lift um pouco mais presente + sombra refinada */
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,116,10,0.34); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.34); }

/* clique tátil */
.btn:active { transform: translateY(0) scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before,
  .btn-whatsapp::before { display: none; }
  .btn { transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
  .btn:active { transform: none; }
}

/* =====================================================
   HERO — rede de partículas (efeito tech)
   Canvas criado via JS, acima do gradiente e abaixo do texto.
   ===================================================== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===== Faixa de números (resultados) ===== */
.stats-band {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 0;
  background: linear-gradient(135deg, #16315e 0%, #1B3C73 55%, #234a8a 100%);
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  position: relative;
  text-align: center;
  padding: 0.4rem 1rem;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}
.stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.04em;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-pre,
.stat-suf {
  color: var(--accent);
}
.stat-suf {
  font-size: 0.7em;
}
.stat-label {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1rem;
  }
  .stat-item::after {
    display: none;
  }
}

/* ===== Faixa de autoridade (distribuidor + certificações) ===== */
.authority-band {
  background: #f6f8fb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 0;
}
.authority-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem 2.4rem;
}
.authority-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.authority-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.authority-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.4rem;
}
.brand-name {
  position: relative;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}
.brand-name:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.72rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}
.authority-band:hover .brand-name { opacity: 0.55; }
.authority-band .brand-name:hover { opacity: 1; }
.authority-cert-block {
  align-items: flex-end;
}
.authority-certs {
  display: flex;
  gap: 0.6rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cert-badge svg { color: var(--beam, #22C55E); }
@media (max-width: 760px) {
  .authority-grid { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .authority-cert-block { align-items: flex-start; }
}
