/* ================================================================
   PLACON CONTABILIDADE — Landing Page Premium
   Mobile-first • CSS moderno • Microinterações
   ================================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overscroll-behavior: none; }
body { overscroll-behavior: none; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select, button { font-family: inherit; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
::selection { background: #0A3D87; color: #fff; }

/* ---------- SCROLL PROGRESS BAR ---------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-400), var(--c-700));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(80, 133, 212, 0.6);
}

/* ---------- TOKENS ---------- */
:root {
  /* Azul Placon (escala) */
  --c-50:  #F2F7FE;
  --c-100: #E0EBFA;
  --c-200: #BDD5F2;
  --c-300: #89B0E5;
  --c-400: #5085D4;
  --c-500: #2E63BD;
  --c-600: #0F4FAE;
  --c-700: #0A3D87;
  --c-800: #082A5E;
  --c-900: #061E47;
  --c-950: #03122E;

  --accent-light: #1E88E5;
  --accent: #1565C0;

  /* Neutros */
  --ink-950: #06101F;
  --ink-900: #0E1B2C;
  --ink-700: #2A3A4F;
  --ink-500: #5A6B82;
  --ink-300: #9AA7B8;
  --ink-200: #C7D0DC;
  --ink-100: #E5EAF1;
  --ink-50:  #F6F9FD;
  --white: #FFFFFF;

  --green-wa: #25D366;
  --green-wa-dark: #1FB855;
  --gold: #F5B400;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(10, 61, 135, .05);
  --shadow-sm: 0 4px 12px rgba(10, 61, 135, .06);
  --shadow-md: 0 12px 32px rgba(10, 61, 135, .10);
  --shadow-lg: 0 24px 60px rgba(10, 61, 135, .14);
  --shadow-xl: 0 36px 80px rgba(10, 61, 135, .22);
  --shadow-cta: 0 14px 30px rgba(10, 61, 135, .35);
  --shadow-cta-h: 0 22px 48px rgba(10, 61, 135, .50);

  /* Raios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --container: 1200px;
  --header-h: 70px;

  /* Tipografia */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Easing */
  --ease: cubic-bezier(.4, .2, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- BASE ---------- */
html, body {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body.menu-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  color: var(--ink-900);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }

p { color: var(--ink-700); }

/* Texto com gradiente (acentos) */
.grad-text {
  background: linear-gradient(120deg, var(--c-700) 0%, var(--c-500) 60%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.grad-text-light {
  background: linear-gradient(120deg, #FFFFFF 0%, #BDD5F2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-700);
  background: var(--c-100);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(10, 61, 135, .08);
}
.eyebrow-light {
  background: rgba(255, 255, 255, .14);
  color: #DDEBFF;
  border-color: rgba(255, 255, 255, .2);
}

/* ---------- BACKGROUND DECOR ---------- */
.bg-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
}
.bg-blob-1 {
  width: 520px; height: 520px;
  top: -150px; right: -120px;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
}
.bg-blob-2 {
  width: 480px; height: 480px;
  top: 35%; left: -180px;
  background: radial-gradient(circle, var(--c-500), transparent 70%);
  opacity: .22;
}
.bg-blob-3 {
  width: 380px; height: 380px;
  top: 70%; right: -140px;
  background: radial-gradient(circle, var(--c-200), transparent 70%);
  opacity: .35;
}
.bg-watermark {
  position: absolute;
  opacity: 0;
  filter: blur(.3px);
  pointer-events: none;
  user-select: none;
  transform-origin: center;
  transition: opacity 1.6s var(--ease-out), transform 1.6s var(--ease-out);
}
.bg-watermark.is-visible { opacity: var(--wm-o, .04); }
.wm-1 { width: 220px; top: 6%;  right: 5%;   transform: rotate(-16deg); }
.wm-1.is-visible { transform: rotate(-10deg); }
.wm-2 { width: 240px; top: 24%; left: -40px; transform: rotate(14deg); }
.wm-2.is-visible { transform: rotate(8deg); }
.wm-3 { width: 200px; top: 46%; right: -30px; transform: rotate(-12deg); }
.wm-3.is-visible { transform: rotate(-6deg); }
.wm-4 { width: 230px; top: 64%; left: 6%;   transform: rotate(12deg); }
.wm-4.is-visible { transform: rotate(6deg); }
.wm-5 { width: 210px; top: 82%; right: 8%;  transform: rotate(-14deg); }
.wm-5.is-visible { transform: rotate(-8deg); }
.wm-6 { width: 190px; top: 96%; left: -20px; transform: rotate(10deg); }
.wm-6.is-visible { transform: rotate(5deg); }

@media (max-width: 992px) {
  .bg-watermark.is-visible { opacity: .035; }
  .wm-1, .wm-3, .wm-5 { width: 160px; }
  .wm-2, .wm-4, .wm-6 { width: 170px; }
  .bg-blob-3 { display: none; }
}
@media (max-width: 768px) {
  .wm-1 { width: 140px; right: -20px; }
  .wm-2 { width: 150px; left: -40px; }
  .wm-3 { display: none; }
  .wm-4 { width: 140px; left: 8%; }
  .wm-5 { display: none; }
  .wm-6 { width: 130px; left: -30px; }
  .bg-blob-1 { width: 320px; height: 320px; }
  .bg-blob-2 { width: 280px; height: 280px; }
}

/* ================================================================
   BUTTONS — modernos, com brilho, hover suave
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .35s var(--ease), color .25s var(--ease);
  border: 0;
  isolation: isolate;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { flex-shrink: 0; }
.btn span { display: inline-block; line-height: 1; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-700) 0%, var(--c-500) 100%);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-800) 0%, var(--c-600) 100%);
  box-shadow: var(--shadow-cta-h);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--c-700);
  border: 2px solid var(--c-100);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  background: var(--c-50);
  border-color: var(--c-700);
  color: var(--c-700);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: var(--white);
  color: var(--c-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--c-50); color: var(--c-800); }

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  box-shadow: 0 18px 36px rgba(37, 211, 102, .45);
  color: var(--white);
}


/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: linear-gradient(135deg, var(--c-800), var(--c-700));
  color: #DDEBFF;
  font-size: .82rem;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ti-item { display: inline-flex; align-items: center; gap: 6px; transition: color .2s var(--ease); }
.ti-item:hover { color: var(--white); }
.ti-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, .25); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(10, 61, 135, .08);
  background: rgba(255, 255, 255, .96);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  flex-wrap: nowrap;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img {
  width: 100px !important;
  height: 100px !important;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  display: block;
  transition: transform .3s var(--ease);
}
.logo:hover img { transform: scale(1.05) rotate(-2deg); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav ul a {
  font-weight: 500;
  color: var(--ink-700);
  font-size: .95rem;
  position: relative;
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.main-nav ul a:hover { color: var(--c-700); }
.main-nav ul a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-700), var(--c-500));
  border-radius: 2px;
  transition: right .3s var(--ease);
}
.main-nav ul a:hover::after { right: 0; }

.nav-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px; height: 40px;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-700);
  border-radius: 50%;
}
.nav-close:hover { background: var(--ink-100); }

/* CTA principal Fale Conosco */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  color: #FFFFFF;
  box-shadow: var(--shadow-cta);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .35s var(--ease);
  border: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--c-800), var(--c-600));
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-h);
  color: #FFFFFF;
}
.nav-cta-btn svg { width: 16px !important; height: 16px !important; flex-shrink: 0; display: block; }
.nav-cta-btn span { color: #FFFFFF; line-height: 1; }
.nav-cta-btn::after { display: none !important; }

/* Botão Instagram circular */
.nav-instagram {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  color: var(--c-700);
  background: var(--white);
  border: 1.5px solid var(--c-100);
  transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
  font-size: 0;
}
.nav-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(220, 39, 67, .35);
}
.nav-instagram svg {
  width: 20px !important; height: 20px !important;
  min-width: 20px; min-height: 20px;
  max-width: 20px; max-height: 20px;
  display: block !important;
  flex-shrink: 0;
}
.nav-instagram::after, .nav-instagram::before { display: none !important; content: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 30, 71, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 95;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  background:
    radial-gradient(620px 400px at 16% 10%, rgba(30, 136, 229, .16), transparent 60%),
    radial-gradient(700px 440px at 92% 6%, rgba(10, 61, 135, .18), transparent 62%),
    radial-gradient(540px 380px at 72% 98%, rgba(46, 99, 189, .12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 61, 135, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 135, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 52% 28%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 52% 28%, #000, transparent 70%);
  pointer-events: none;
  z-index: -1;
}


/* Hero chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hero-chip:hover { transform: translateY(-3px); border-color: var(--c-200); box-shadow: var(--shadow-md); }
.hero-chip svg { color: var(--c-600); flex-shrink: 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-width: 0;
}
.hero-inner > * { min-width: 0; }
.hero-title {
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-500);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-lead strong { color: var(--ink-900); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.hr-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hr-text { display: flex; flex-direction: column; line-height: 1.2; }
.hr-text strong { color: var(--ink-900); font-size: .92rem; font-weight: 700; }
.hr-text span { color: var(--ink-500); font-size: .78rem; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 540px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-100);
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong {
  font-size: 1.7rem;
  color: var(--c-700);
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
.hero-trust span { color: var(--ink-500); font-size: .85rem; margin-top: 4px; }

/* Hero visual — animated growth dashboard */
.hero-visual { position: relative; }
.hv-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--c-100);
  border-radius: var(--r-xl);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 2;
}
.hv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 92% -12%, rgba(30, 136, 229, .14), transparent 60%);
  pointer-events: none;
}
.hv-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}
.hv-card-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  font-size: .98rem;
}
.hv-tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-700);
  background: var(--c-100);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.hv-metric { position: relative; margin-bottom: 14px; }
.hv-metric-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--c-700), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hv-metric-value svg { color: #1ECC8A; }
.hv-metric-label {
  display: block;
  margin-top: 7px;
  color: var(--ink-500);
  font-size: .82rem;
  max-width: 300px;
  line-height: 1.5;
}
.hv-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 2px 0 4px;
}
.hv-checklist-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hv-progress {
  height: 7px;
  border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
  margin-bottom: 16px;
}
.hv-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1E88E5, #1ECC8A);
  animation: progressFill 1.1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes progressFill { to { width: 100%; } }
.hv-checklist-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  background: linear-gradient(135deg, #1ECC8A, #12A06B);
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hv-checklist-label {
  font-weight: 700;
  color: var(--ink-900);
  font-size: .95rem;
}
.hv-check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: var(--r-lg, 12px);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  opacity: 0;
  transform: translateX(-12px);
  animation: checkSlideIn .5s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes checkSlideIn { to { opacity: 1; transform: translateX(0); } }
.hv-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E88E5, #0A3D87);
  box-shadow: 0 4px 10px rgba(10, 61, 135, .25);
  transform: scale(0);
  animation: checkPop .35s var(--ease) forwards;
  animation-delay: calc(var(--d, 0s) + .12s);
}
@keyframes checkPop { to { transform: scale(1); } }
.hv-check-text {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-700);
}
.hv-card-foot {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
  flex-wrap: wrap;
  position: relative;
}
.hv-card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-700);
}
.hv-card-foot svg { color: var(--c-600); flex-shrink: 0; }


/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  background: var(--ink-50);
  padding: 20px 0;
}
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-width: 0;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-700);
  min-width: 0;
}
.ts-item svg { color: var(--c-700); flex-shrink: 0; }
.ts-item span { font-size: .9rem; line-height: 1.3; min-width: 0; }
.ts-item strong { display: block; color: var(--ink-900); font-weight: 700; font-size: .9rem; }

/* ================================================================
   STATS
   ================================================================ */
.stats {
  background: linear-gradient(135deg, var(--c-800), var(--c-700));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 350px at 80% 50%, rgba(255,255,255,.06), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -.03em;
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  display: inline-block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -.03em;
  line-height: 1;
  color: rgba(255, 255, 255, .65);
}
.stat-label {
  color: #C8D9F0;
  font-size: .92rem;
  font-weight: 500;
  margin-top: 10px;
}

/* ================================================================
   SECTIONS comuns
   ================================================================ */
.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 14px; }
.section-sub { color: var(--ink-500); font-size: 1.05rem; line-height: 1.65; }
.section-head-light h2 { color: var(--white); }
.section-sub-light { color: #C8D9F0; font-size: 1.05rem; line-height: 1.65; }

/* ================================================================
   SOBRE
   ================================================================ */
.sobre { background: var(--ink-50); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  min-width: 0;
}
.sobre-inner > * { min-width: 0; }
.sobre-image { position: relative; }
.si-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.si-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 61, 135, .15));
  pointer-events: none;
}
.si-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform .6s var(--ease);
}
.sobre-image:hover .si-frame img { transform: scale(1.03); }
.si-badge {
  position: absolute;
  bottom: 24px;
  left: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--c-700);
}
.si-badge strong {
  font-size: 2.2rem;
  color: var(--c-700);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -.02em;
}
.si-badge span { color: var(--ink-500); font-size: .85rem; margin-top: 4px; }
.si-tile {
  position: absolute;
  top: 24px;
  right: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.si-tile-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.si-tile strong { display: block; color: var(--ink-900); font-size: .92rem; font-weight: 700; }
.si-tile span { color: var(--ink-500); font-size: .78rem; }

.sobre-content p { margin-bottom: 16px; color: var(--ink-700); }
.sobre-content p strong { color: var(--ink-900); font-weight: 700; }
.check-list {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--ink-700);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  border-radius: 50%;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"),
    linear-gradient(135deg, var(--c-700), var(--c-500));
  background-size: 14px, cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 10px rgba(10, 61, 135, .25);
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.servicos { background: var(--white); }
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.service-card {
  flex: 1 1 300px;
  max-width: 372px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-700), var(--c-500), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-100);
}
.service-card:hover::before { transform: scaleX(1); }

.sc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--c-700), var(--accent-light));
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 14px rgba(10, 61, 135, .25);
}
.sc-icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  background: var(--c-100);
  color: var(--c-700);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(10, 61, 135, .25);
}
.service-card h3 { margin-bottom: 8px; color: var(--ink-900); }
.service-card p { color: var(--ink-500); font-size: .95rem; margin-bottom: 18px; line-height: 1.6; }
.sc-link {
  color: var(--c-700);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.sc-link:hover { gap: 10px; color: var(--c-800); }
.service-card-feature {
  background: linear-gradient(180deg, var(--c-50) 0%, var(--white) 60%);
  border-color: var(--c-200);
}

/* ================================================================
   DIFERENCIAIS
   ================================================================ */
.diferenciais {
  background:
    radial-gradient(700px 350px at 90% 0%, rgba(30, 136, 229, .25), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(10, 61, 135, .35), transparent 60%),
    linear-gradient(135deg, var(--c-800), var(--c-900));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.dif-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.dif-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .25);
}
.df-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  color: #BDD5F2;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
}
.df-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .12);
  font-family: var(--font-display);
  letter-spacing: -.03em;
}
.dif-card h3 { color: var(--white); margin-bottom: 10px; }
.dif-card p { color: #C8D9F0; font-size: .95rem; line-height: 1.6; }

/* ================================================================
   AVALIAÇÕES (Google)
   ================================================================ */
.avaliacoes { background: var(--white); }
.aval-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(520px 320px at 100% 0%, rgba(30, 136, 229, .10), transparent 60%),
    linear-gradient(160deg, var(--c-50), var(--white));
  border: 1px solid var(--c-100);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  min-width: 0;
}
.aval-card > * { min-width: 0; }
.aval-text h2 { margin: 10px 0 14px; }
.aval-text p { color: var(--ink-500); line-height: 1.65; margin-bottom: 26px; max-width: 540px; }
.aval-visual { display: flex; justify-content: center; }
.aval-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.aval-badge svg { color: var(--c-600); margin-bottom: 6px; }
.aval-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-900);
  letter-spacing: -.02em;
}
.aval-badge span { color: var(--ink-500); font-size: .88rem; line-height: 1.4; }

/* ================================================================
   PROCESSO
   ================================================================ */
.processo { background: var(--ink-50); }
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.processo-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--ink-100);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.processo-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(10, 61, 135, .3);
  position: relative;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-100);
  opacity: .5;
}
.processo-step h3 { margin-bottom: 8px; }
.processo-step p { color: var(--ink-500); font-size: .92rem; line-height: 1.6; }

/* ================================================================
   IMPACT BANNER
   ================================================================ */
.impact-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    radial-gradient(700px 350px at 80% 50%, rgba(30, 136, 229, .25), transparent 60%),
    linear-gradient(135deg, var(--c-900), var(--c-800));
  color: var(--white);
  overflow: hidden;
}
.impact-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px; height: 240px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}
.impact-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px; height: 280px;
  background: rgba(30, 136, 229, .12);
  border-radius: 50%;
}
.impact-inner { position: relative; z-index: 1; text-align: center; }
.impact-quote {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.impact-quote-mark {
  color: rgba(189, 213, 242, .25);
  margin: 0 auto 12px;
}
.impact-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.impact-author {
  color: #BDD5F2;
  font-size: .95rem;
  font-weight: 500;
}

/* ================================================================
   DEPOIMENTOS
   ================================================================ */
.depoimentos { background: var(--white); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.depoimento {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 32px 30px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.depoimento::after {
  content: '"';
  position: absolute;
  top: 8px; right: 24px;
  font-size: 5rem;
  font-weight: 800;
  color: var(--c-100);
  line-height: 1;
  font-family: Georgia, serif;
}
.depoimento:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-100);
}
.dep-stars { color: var(--gold); display: inline-flex; gap: 2px; margin-bottom: 14px; }
.depoimento p { color: var(--ink-700); font-size: .96rem; margin-bottom: 22px; font-style: italic; line-height: 1.6; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  box-shadow: 0 6px 14px rgba(10, 61, 135, .25);
}
.dep-author strong { display: block; color: var(--ink-900); font-size: .95rem; }
.dep-author span { color: var(--ink-500); font-size: .82rem; }

/* ================================================================
   FAQ
   ================================================================ */
.faq { background: var(--ink-50); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  min-width: 0;
}
.faq-inner > * { min-width: 0; }
.faq-side h2 { margin-bottom: 16px; }
.faq-side p { color: var(--ink-500); margin-bottom: 24px; line-height: 1.65; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] { border-color: var(--c-200); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
}
.faq-item summary::after {
  content: '+';
  color: var(--c-700);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--c-50);
  border-radius: 50%;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--c-700); color: var(--white); }
.faq-content {
  padding: 0 24px 22px;
  animation: faqfade .35s var(--ease);
}
.faq-content p { color: var(--ink-500); font-size: .95rem; line-height: 1.65; }
@keyframes faqfade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background:
    radial-gradient(600px 300px at 110% 50%, rgba(30, 136, 229, .35), transparent 60%),
    linear-gradient(135deg, var(--c-700), var(--c-900));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  min-width: 0;
}
.cta-banner-inner > * { min-width: 0; }
.cb-text h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.cb-text p { color: #C8D9F0; font-size: 1rem; line-height: 1.6; }
.cb-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ================================================================
   CONTATO
   ================================================================ */
.contato { background: var(--ink-50); }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
  min-width: 0;
}
.contato-inner > * { min-width: 0; }
.contato-info > p { color: var(--ink-500); margin: 14px 0 28px; max-width: 520px; line-height: 1.65; }
.contact-list { display: grid; gap: 16px; margin-bottom: 28px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--white);
  color: var(--c-700);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.contact-list li:hover .ci-icon {
  background: linear-gradient(135deg, var(--c-700), var(--c-500));
  color: var(--white);
  transform: scale(1.08);
}
.contact-list strong {
  display: block;
  font-size: .78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list a, .contact-list span {
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1rem;
}
.contact-list a:hover { color: var(--c-700); }

/* Form */
.contato-form {
  background: var(--white);
  padding: 38px 34px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.contato-form h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form-sub { color: var(--ink-500); font-size: .9rem; margin-bottom: 24px; }

/* Mapa de localização (substitui o formulário) */
.contato-map {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cm-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--ink-50);
  overflow: hidden;
}
.cm-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.cm-frame-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 61, 135, 0);
  color: #fff;
  opacity: 0;
  transition: background .3s var(--ease), opacity .3s var(--ease);
  font-weight: 600;
  font-size: .85rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}
.cm-frame:hover .cm-frame-overlay,
.cm-frame:focus-visible .cm-frame-overlay {
  opacity: 1;
  background: rgba(10, 61, 135, .35);
}
.cm-frame-pin {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transform: translateY(6px);
  transition: transform .3s var(--ease);
}
.cm-frame:hover .cm-frame-pin { transform: translateY(0); }
.cm-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  flex-wrap: wrap;
  background: var(--ink-50);
  border-top: 1px solid var(--ink-100);
}
.cm-info strong { display: block; font-size: 1.05rem; color: var(--ink-900); margin-bottom: 4px; }
.cm-info > div > span { color: var(--ink-500); font-size: .88rem; }
.cm-info .btn {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: .95rem;
  padding: 14px 26px;
  color: #fff;
}
.cm-info .btn span { color: #fff; }
@media (max-width: 768px) {
  .cm-frame-overlay { opacity: 1; background: rgba(10, 61, 135, .16); }
  .cm-frame-pin { transform: translateY(0); }
  .cm-info { padding: 20px; }
  .cm-info .btn { width: 100%; justify-content: center; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: .85rem;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink-900);
  font-size: .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-700);
  box-shadow: 0 0 0 4px rgba(10, 61, 135, .12);
  background: var(--c-50);
}
.form-feedback {
  margin-top: 14px;
  font-size: .9rem;
  text-align: center;
  min-height: 22px;
}
.form-feedback.success { color: #1B8A4D; }
.form-feedback.error { color: #C0392B; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--ink-950), var(--c-950));
  color: #C5CEDB;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  width: 460px;
  bottom: -110px;
  right: -80px;
  opacity: .04;
  filter: grayscale(100%) brightness(2);
  transform: rotate(-8deg);
  pointer-events: none;
  user-select: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.footer-inner > * { min-width: 0; }
.footer-brand { max-width: 360px; }
.footer-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-brand p { color: #9AA7B8; font-size: .92rem; margin-bottom: 18px; line-height: 1.65; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #C5CEDB;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--c-700); color: var(--white); transform: translateY(-3px); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li {
  color: #9AA7B8;
  font-size: .92rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  font-size: .85rem;
  color: #7A879B;
  position: relative;
  z-index: 1;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-credit { color: #7A879B; }
.dev-sig {
  font-size: .74rem;
  color: #4A5A6A;
  margin-top: 8px;
}
.dev-sig-link {
  color: #6A8099;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(106, 128, 153, .35);
  transition: color .2s, text-decoration-color .2s;
}
.dev-sig-link:hover {
  color: #A8C4DC;
  text-decoration-color: rgba(168, 196, 220, .6);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: background .2s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float:hover { background: var(--green-wa-dark); }
.whatsapp-float svg { width: 30px; height: 30px; pointer-events: none; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-wa);
  z-index: -1;
  animation: pulse 2.2s ease-out infinite;
}
.whatsapp-float.is-dragging::before { animation-play-state: paused; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-900);
  color: var(--white);
  font-size: .8rem;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  font-weight: 600;
}
.whatsapp-float:hover .wa-tip { opacity: 1; }

/* ================================================================
   ANIMATIONS (reveal on scroll)
   ================================================================ */
/* Only hide on reveal when JS is active (sets html.js). Without JS the content
   stays visible as a fail-safe. */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ================================================================
   RESPONSIVO
   ================================================================ */

/* Tablet ≤ 992px */
@media (max-width: 992px) {
  .hero-inner,
  .sobre-inner,
  .contato-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Text first, visual second when stacked on tablet/mobile */
  .hero-visual { order: 1; max-width: 540px; margin: 0 auto; width: 100%; }
  .hero-trust { max-width: none; }
  .sobre-image { max-width: 480px; margin: 0 auto; width: 100%; }
  .si-frame img { aspect-ratio: 4 / 3.2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .processo-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid > article:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - 12px); margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cb-actions { justify-content: center; }
  .aval-card { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .aval-text p { margin-left: auto; margin-right: auto; }
  .aval-visual { order: -1; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .logo img {
    width: 82px !important; height: 82px !important;
    min-width: 82px; min-height: 82px;
    max-width: 82px; max-height: 82px;
  }
  :root { --header-h: 78px; }
}

/* Tela média (1100-1280px) */
@media (max-width: 1280px) and (min-width: 993px) {
  .logo img {
    width: 90px !important; height: 90px !important;
    min-width: 90px; min-height: 90px;
    max-width: 90px; max-height: 90px;
  }
  :root { --header-h: 110px; }
  .main-nav { gap: 16px; }
  .main-nav ul { gap: 16px; }
  .main-nav ul a { font-size: .86rem; }
  .nav-cta-btn { padding: 10px 16px; font-size: .82rem; gap: 6px; }
  .nav-instagram {
    width: 40px !important; height: 40px !important;
    min-width: 40px; max-width: 40px;
    min-height: 40px; max-height: 40px;
  }
  .container { padding: 0 24px; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  .topbar { font-size: .75rem; height: auto; padding: 8px 0; }
  .topbar-info { gap: 10px; }
  .ti-hide-sm { display: none; }
  .tc-online { padding-left: 16px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-close { display: grid; place-items: center; }

  /* Critical: backdrop-filter on .site-header creates a containing block for
     position:fixed descendants, which would trap the drawer inside the header.
     Use a solid background on mobile so the drawer can fill the viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 70px 24px 32px;
    box-shadow: -10px 0 40px rgba(6, 30, 71, .2);
    transform: translateX(105%);
    transition: transform .35s var(--ease);
    z-index: 96;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 18px;
  }
  .main-nav li { border-bottom: 1px solid var(--ink-100); }
  .main-nav ul a {
    display: block;
    padding: 16px 4px;
    font-size: 1.05rem;
    font-weight: 600;
  }
  .main-nav ul a::after { display: none; }
  .nav-cta-btn {
    width: 100%;
    margin-top: 4px;
    text-align: center;
    justify-content: center;
    padding: 14px 22px;
    font-size: 1rem;
  }
  .nav-instagram {
    width: 100% !important;
    height: auto !important;
    min-width: 0;
    max-width: 100%;
    max-height: none;
    border-radius: var(--r-pill);
    padding: 13px 22px;
    margin-top: 8px;
    gap: 10px;
    line-height: 1;
    font-size: 1rem;
  }
  .nav-instagram::before {
    content: 'Instagram' !important;
    display: inline-flex !important;
    color: inherit;
    font-weight: 600;
    order: 2;
    position: static !important;
    background: transparent !important;
    width: auto;
    height: auto;
    animation: none !important;
    box-shadow: none !important;
  }

  /* ---- Hero mobile: layout centrado, leve, visual ---- */
  .hero { padding: 36px 0 48px; }
  .hero-inner { gap: 0; }
  .hero-text { text-align: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .hero-lead { display: none; }
  .hero-visual { max-width: 420px; margin: 28px auto 0; }
  .hv-card { padding: 22px 20px 18px; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-cta .btn { width: 100%; max-width: 340px; justify-content: center; }
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink-100);
    padding-top: 28px;
    margin-top: 32px;
    max-width: 100%;
  }
  .hero-trust li {
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
  }
  .hero-trust li + li::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: var(--ink-100);
  }
  .hero-trust strong { font-size: 1.5rem; }
  .hero-trust span { font-size: .78rem; }
  .floating-card { display: none; }

  .stats { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item + .stat-item::before { display: none; }

  .ts-grid { grid-template-columns: 1fr; }
  .processo-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .dep-grid > article:nth-child(3) { max-width: 100%; }

  .si-badge { left: 16px; bottom: 16px; padding: 14px 18px; }
  .si-badge strong { font-size: 1.6rem; }
  .si-tile { right: 16px; top: 16px; padding: 10px 14px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .contato-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .whatsapp-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .wa-tip { display: none; }

  .logo img {
    width: 74px !important; height: 74px !important;
    min-width: 74px; min-height: 74px;
    max-width: 74px; max-height: 74px;
  }
  :root { --header-h: 72px; }
}

/* Small mobile ≤ 420px */
@media (max-width: 420px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .topbar-inner { flex-direction: column; gap: 6px; align-items: center; }
  .hero-trust strong { font-size: 1.15rem; }
  .hero-trust span { font-size: .72rem; }
  .btn-lg { padding: 14px 22px; font-size: .95rem; }
  .stat-num, .stat-suffix { font-size: 1.9rem; }
  .si-badge { display: none; }
  .si-tile { display: none; }
  .cb-actions { flex-direction: column; }
  .cb-actions .btn { width: 100%; }
  .impact-quote p { font-size: 1.2rem; }

  .hv-metric-value { font-size: 1.6rem; }
  .hv-check-item { padding: 8px 10px; gap: 9px; }
  .hv-check-text { font-size: .85rem; }
  .hv-checklist-label { font-size: .88rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
