/* =============================================================
   Nome da Empresa — styles.css  (redesign premium)
   Tipografia : Cormorant Garamond (display) + Outfit (body)
   Paleta     : Azul institucional · Branco · Cinza estrutural
   ============================================================= */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Blues */
  --ink:       #05111f;       /* quase preto azulado */
  --navy:      #0c2340;
  --navy-md:   #133566;
  --blue:      #1a4da1;
  --blue-mid:  #2563b0;
  --blue-lt:   #3b7dd8;
  --blue-pale: #dce8f8;
  --blue-xlt:  #eef4fc;

  /* Neutrals */
  --white:     #ffffff;
  --gray-50:   #f5f7fa;
  --gray-100:  #eaeef4;
  --gray-200:  #d5dce8;
  --gray-400:  #8e9ab0;
  --gray-600:  #5a6680;
  --gray-800:  #2a3348;

  /* Fonts */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Outfit', -apple-system, sans-serif;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(5,17,31,0.06);
  --sh-md: 0 6px 24px rgba(5,17,31,0.09);
  --sh-lg: 0 16px 48px rgba(5,17,31,0.13);
  --sh-xl: 0 28px 72px rgba(5,17,31,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);
}

/* ── Base ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }

/* ── Section spacing ─────────────────────────────────────────── */
.py-section     { padding: 96px 0; }
.bg-light-section { background: var(--gray-50); }
.min-vh-hero    { min-height: calc(100vh - 70px); }

/* ── Typography helpers ──────────────────────────────────────── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-heading em {
  font-style: italic;
  color: var(--blue);
}

.section-body {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.section-sub-desc {
  font-size: 0.96rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.site-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.site-btn-primary:hover {
  background: var(--navy-md);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,77,161,0.32);
}

.site-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all var(--t);
}
.site-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  gap: 12px;
}

.site-btn-nav {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-md);
  border: none;
  transition: background var(--t), transform var(--t);
}
.site-btn-nav:hover {
  background: var(--navy-md);
  color: var(--white);
  transform: translateY(-1px);
}

.site-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--r-md);
  transition: all var(--t);
}
.site-btn-white:hover {
  background: var(--blue-pale);
  color: var(--navy-md);
  transform: translateY(-2px);
}

.site-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-md);
  border: none;
  transition: all var(--t);
}
.site-btn-wa:hover {
  background: #1ebe5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}
.reveal-up.animated  { animation: riseUp 0.75s var(--ease) forwards; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-right.animated { animation: riseRight 0.85s var(--ease) forwards; }

.delay-1 { animation-delay: 0.12s !important; }
.delay-2 { animation-delay: 0.24s !important; }
.delay-3 { animation-delay: 0.36s !important; }
.delay-4 { animation-delay: 0.50s !important; }

@keyframes riseUp    { to { opacity:1; transform:translateY(0); } }
@keyframes riseRight { to { opacity:1; transform:translateX(0); } }

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.site-navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  height: 80px;
  transition: all 0.3s var(--ease);
}

/* Scrolled state */
header.scrolled .site-navbar {
  height: 70px;
  box-shadow: var(--sh-md);
  background: rgba(255,255,255,0.98);
}

/* Brand */
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,77,161,0.2);
}
header.scrolled .brand-mark { width: 36px; height: 36px; font-size: 1rem; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
.site-nav-link {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-sm);
  transition: all var(--t) !important;
}
.site-nav-link:hover,
.site-nav-link.active {
  color: var(--blue) !important;
  background: var(--blue-xlt);
}

/* Nav Separator */
.nav-sep {
  width: 1px;
  height: 24px;
  background: var(--gray-200);
}

/* Client Area Link */
.site-nav-link-client {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.site-nav-link-client:hover { color: var(--blue) !important; }
.site-nav-link-client i { font-size: 1.1rem; }

/* Dropdown Menu Custom */
.site-dropdown-menu {
  padding: 12px;
  border-radius: var(--r-md);
  min-width: 260px;
  margin-top: 10px !important;
  animation: slideDropdown 0.3s var(--ease);
}
@keyframes slideDropdown {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--t);
}
.site-dropdown-menu .dropdown-item i {
  font-size: 1.1rem;
  color: var(--blue-lt);
  transition: transform var(--t);
}
.site-dropdown-menu .dropdown-item:hover {
  background: var(--blue-xlt);
  color: var(--blue);
  transform: translateX(4px);
}
.site-dropdown-menu .dropdown-item:hover i { transform: scale(1.1); }

/* Accent Button */
.site-btn-nav-accent {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-md) 100%);
  color: var(--white);
  border-radius: var(--r-md);
  border: none;
  box-shadow: 0 4px 12px rgba(26,77,161,0.2);
  transition: all var(--t);
}
.site-btn-nav-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,77,161,0.35);
  color: var(--white);
}

.site-btn-outline-client {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--r-sm);
  padding: 6px 10px;
}

/* Hamburger */
.site-toggler {
  border: none;
  background: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.site-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--t);
}
.site-toggler:focus { box-shadow: none !important; }
.site-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 8px;
  }
  .site-btn-nav { margin: 12px 0 0; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.site-hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-md) 55%, var(--blue) 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}

/* Geometric elements */
.hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.geo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.geo-block {
  position: absolute;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
}
.geo-block--1 { width: 500px; height: 500px; top: -180px; right: -100px; transform: rotate(20deg); }
.geo-block--2 { width: 280px; height: 280px; bottom: -80px; left: 10%; transform: rotate(-15deg); }

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.geo-ring--1 { width: 600px; height: 600px; bottom: -280px; right: -100px; }
.geo-ring--2 { width: 360px; height: 360px; bottom: -160px; right: 60px; }

.geo-line--diag {
  position: absolute;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  top: 55%;
  left: -10%;
  transform: rotate(-8deg);
}

/* Hero content */
.site-hero-content { padding-top: 20px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 30px;
}
.hero-eyebrow .bi { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-item span { font-size: 0.76rem; color: rgba(255,255,255,0.55); }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Hero visual */
.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0 20px 60px;
}

/* Main panel (dashboard card) */
.hv-main-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  width: 340px;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.hv-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hv-dots { display: flex; gap: 5px; }
.hv-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hv-panel-title { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-left: 4px; }

.hv-panel-body { padding: 20px; }

.hv-bar-chart { margin-bottom: 16px; }
.hv-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 4px;
}
.hv-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: background var(--t);
}
.hv-bar--accent { background: rgba(255,255,255,0.38); }
.hv-bar span { font-size: 0.62rem; color: rgba(255,255,255,0.55); }

.hv-panel-stats { display: flex; justify-content: space-between; }
.hv-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.hv-stat .bi { font-size: 1.1rem; color: rgba(255,255,255,0.6); }
.hv-stat strong { display: block; font-size: 0.9rem; font-weight: 600; }
.hv-stat small  { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.hv-stat--right { text-align: right; }

/* Float cards */
.hv-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--sh-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.hv-float-card .bi {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-xlt);
  color: var(--blue);
  border-radius: var(--r-sm);
  font-size: 1rem;
  flex-shrink: 0;
}
.hv-float--tl { top: 10px; left: -30px; animation: floatY 4s ease-in-out infinite; }
.hv-float--br { bottom: 20px; right: -20px; animation: floatY 4s ease-in-out infinite 2s; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Sobre ───────────────────────────────────────────────────── */
.sobre-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.sv-backdrop {
  position: absolute;
  width: 280px; height: 280px;
  background: var(--blue-xlt);
  border-radius: 50%;
}

.sv-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sv-icon-circle {
  width: 140px; height: 140px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  box-shadow: var(--sh-xl);
}

.sv-lines { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sv-lines span { display: block; height: 3px; border-radius: 3px; background: var(--blue-pale); }
.sv-lines span:nth-child(1) { width: 60px; }
.sv-lines span:nth-child(2) { width: 40px; }
.sv-lines span:nth-child(3) { width: 24px; }

/* Sobre badges */
.sv-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.sv-badge .bi {
  width: 36px; height: 36px;
  background: var(--blue-xlt);
  color: var(--blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sv-badge div { display: flex; flex-direction: column; gap: 1px; }
.sv-badge strong { font-size: 0.85rem; color: var(--ink); font-weight: 700; }
.sv-badge small  { font-size: 0.72rem; color: var(--gray-400); }

.sv-badge--tl { top: 0; left: 0; }
.sv-badge--br { bottom: 0; right: 0; }

/* Pillar items */
.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 16px;
  transition: border-color var(--t), transform var(--t);
}
.pillar-item:hover { border-color: var(--blue-pale); transform: translateX(4px); }
.pillar-item .bi { color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ── Serviços ────────────────────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

/* Subtle left accent on hover */
.svc-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t);
}
.svc-card:hover::after { transform: scaleY(1); }

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-pale);
}

.svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--blue-xlt);
  color: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.svc-card:hover .svc-icon-wrap { background: var(--blue); color: var(--white); }

.svc-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--t);
}
.svc-card:hover .svc-num { color: var(--blue-pale); }

.svc-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue-mid);
  transition: gap var(--t), color var(--t);
  cursor: pointer;
}
.svc-card:hover .svc-link { gap: 10px; color: var(--navy-md); }

/* ── Diferenciais ────────────────────────────────────────────── */
.diff-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  height: 100%;
  transition: transform var(--t), background var(--t), box-shadow var(--t);
}
.diff-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--sh-md);
}

.diff-icon {
  width: 48px; height: 48px;
  background: var(--blue-xlt);
  color: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: background var(--t), color var(--t);
}
.diff-card:hover .diff-icon { background: var(--blue); color: var(--white); }

.diff-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.diff-desc {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Strip ───────────────────────────────────────────────── */
.site-cta-strip {
  position: relative;
  background: linear-gradient(130deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0;
  overflow: hidden;
}

.cta-strip-geo { position: absolute; inset: 0; pointer-events: none; }
.csg--1,.csg--2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.csg--1 { width: 500px; height: 500px; top: -240px; right: -80px; }
.csg--2 { width: 300px; height: 300px; bottom: -180px; left: 5%; }

.cta-strip-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.cta-strip-title {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* ── Contato ─────────────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-sm);
}

.cic-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cic-item:first-child { padding-top: 0; }
.cic-item:last-child  { border-bottom: none; }

.cic-icon {
  width: 40px; height: 40px;
  background: var(--blue-xlt);
  color: var(--blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cic-item > div { display: flex; flex-direction: column; gap: 2px; }
.cic-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); }
.cic-item strong { font-size: 0.94rem; color: var(--ink); font-weight: 600; }

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-sm);
}
.cf-heading {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}

.site-fg { display: flex; flex-direction: column; gap: 6px; }
.site-fg label { font-size: 0.82rem; font-weight: 600; color: var(--gray-800); }

.site-input {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 11px 16px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
  resize: vertical;
}
.site-input::placeholder { color: var(--gray-400); }
.site-input:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,176,0.1);
}
.site-input.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.site-error { font-size: 0.78rem; color: #dc3545; min-height: 14px; }

.site-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: #f0faf4;
  border: 1px solid #b2dfcc;
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-top: 16px;
  color: #1a6b3e;
  font-size: 0.88rem;
  font-weight: 500;
}
.site-success-msg .bi { font-size: 1.2rem; flex-shrink: 0; }
.site-success-msg.visible { display: flex; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-top { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-brand { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 280px; }

.footer-heading {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-list .bi { color: rgba(255,255,255,0.3); font-size: 0.9rem; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ── Custom scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 5px; }

/* ── Responsive overrides ────────────────────────────────────── */
@media (max-width: 991.98px) {
  .py-section { padding: 72px 0; }
}

@media (max-width: 767.98px) {
  .py-section { padding: 56px 0; }
  .hero-title { font-size: 2.1rem; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 24px 20px; }
  .hero-trust { gap: 16px; }
  .trust-item strong { font-size: 1.3rem; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .site-btn-wa { font-size: 0.85rem; }
}