/* ============================================================
   SENT MARKET — Design Premium
   Paleta: Azul marinho profundo + Offwhite quente + Detalhes dourados
   ============================================================ */

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

/* --- Variáveis --------------------------------------------- */
:root {
  /* Cores principais */
  --ink:          #0c1223;      /* Quase-preto azulado — não é preto puro */
  --ink-2:        #1e2d45;      /* Títulos secundários */
  --ink-3:        #344766;      /* Texto médio */
  --muted:        #637891;      /* Texto de apoio */
  --muted-lt:     #8fa3b8;      /* Labels, captions */

  --primary:      #1a4bdb;      /* Azul principal */
  --primary-dk:   #1240c0;      /* Azul hover */
  --primary-lt:   #eef2fd;      /* Fundo azul claro */
  --primary-mid:  #3b63e8;      /* Azul médio */

  --gold:         #c9963f;      /* Detalhe dourado — exclusividade */
  --gold-lt:      #fdf3e2;      /* Fundo dourado claro */

  --green:        #12a052;      /* Verde WhatsApp/sucesso */
  --green-lt:     #edfaf3;      /* Fundo verde claro */

  --surface:      #f7f8fc;      /* Fundo seções claras */
  --surface-2:    #f0f2f8;      /* Fundo ligeiramente mais escuro */
  --border:       #e2e6ef;      /* Bordas sutis */
  --border-dk:    #cdd3e0;      /* Bordas mais visíveis */
  --white:        #ffffff;

  /* Tipografia */
  --font-head:  'Sora', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Bordas */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 100px;

  /* Sombras */
  --sh-xs:  0 1px 3px rgba(12,18,35,.06), 0 1px 2px rgba(12,18,35,.04);
  --sh-sm:  0 2px 8px rgba(12,18,35,.07);
  --sh-md:  0 6px 24px rgba(12,18,35,.09);
  --sh-lg:  0 16px 48px rgba(12,18,35,.11);
  --sh-xl:  0 28px 72px rgba(12,18,35,.14);

  --ease:  .22s cubic-bezier(.4,0,.2,1);
  --nav-h: 72px;
}

/* --- Base --------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--ink-3);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TIPOGRAFIA GLOBAL
============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lt);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.section-tag.light {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
}
.section-tag.gold {
  color: var(--gold);
  background: var(--gold-lt);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-title strong {
  font-weight: 800;
  color: var(--ink);
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}
.section-header.centered .section-desc {
  text-align: center;
}

/* ============================================================
   BOTÕES
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,75,219,.32);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--primary);
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--primary);
  letter-spacing: -.01em;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,75,219,.24);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .9375rem;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: var(--r-md);
  transition: color var(--ease);
}
.btn-ghost:hover { color: var(--white); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: .9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-whatsapp i { font-size: 1.15rem; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
#navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(12,18,35,.07);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: opacity var(--ease);
}
.nav-logo img:hover { opacity: .75; }

.logo-fallback {
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
  gap: 0;
}
.logo-fallback strong {
  color: var(--primary);
  font-weight: 800;
}
.logo-fallback-footer { color: rgba(255,255,255,.88); }
.logo-fallback-footer strong { color: #93c5fd; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease);
  position: relative;
  letter-spacing: .005em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.btn-nav {
  background: var(--ink);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--r-md);
  white-space: nowrap;
  letter-spacing: .005em;
  transition: background var(--ease), box-shadow var(--ease);
}
.btn-nav:hover {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(26,75,219,.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}

/* Menu Mobile */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 13px 28px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-3);
  border-bottom: 1px solid var(--surface);
  transition: color var(--ease), background var(--ease);
}
.mobile-link:hover { color: var(--primary); background: var(--primary-lt); }
.btn-mobile {
  margin: 16px 28px 0;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-md);
  text-align: center;
  font-size: .9375rem;
}
.btn-mobile:hover { background: var(--primary-dk); }

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  background: var(--white);
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Grade de pontos no fundo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,75,219,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  opacity: .6;
}

/* Gradiente azul no canto superior direito */
#hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(ellipse at center, rgba(26,75,219,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Label / Pill de localização */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-dk);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  box-shadow: var(--sh-xs);
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18,160,82,.2);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(18,160,82,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(18,160,82,.05); }
}

/* Headline */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.038em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(26,75,219,.0));
  border-radius: 2px;
  opacity: .25;
}

/* Subtítulo */
.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-lt);
  color: #0d6e39;
  border: 1.5px solid rgba(18,160,82,.2);
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--r-md);
  letter-spacing: -.01em;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-hero-wa:hover {
  background: #dff7ec;
  border-color: rgba(18,160,82,.35);
  box-shadow: 0 4px 16px rgba(18,160,82,.15);
}
.btn-hero-wa i { font-size: 1.1rem; color: #25D366; }

/* Microcopy */
.hero-microcopy {
  font-size: .8rem;
  color: var(--muted-lt);
  margin-top: 12px;
  margin-bottom: 48px;
  letter-spacing: .01em;
}

/* Divider */
.hero-divider {
  width: 32px;
  height: 2px;
  background: var(--border-dk);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 22px;
}
.hero-stat:not(:first-child) { padding-left: 22px; }
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.04em;
}
.hero-stat span {
  font-size: .6875rem;
  color: var(--muted-lt);
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.hero-stat-sep {
  width: 1px; height: 28px;
  background: var(--border-dk);
  flex-shrink: 0;
}

/* Trust grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  width: 100%;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  backdrop-filter: blur(4px);
  box-shadow: var(--sh-xs);
  transition: background .2s, box-shadow .2s;
}
.hero-trust-item:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--sh-sm);
}
.hero-trust-item i {
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Coluna direita */
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sh-xl), inset 0 1px 0 rgba(255,255,255,.4);
  width: 100%;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,75,219,.12) 0%,
    transparent 50%
  );
  pointer-events: none;
  border-radius: inherit;
}
.hero-img {
  width: 100%;
  min-height: 460px;
  max-height: 560px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  decoding: async;
  content-visibility: auto;
}

/* Badge flutuante */
.hero-float-badge {
  position: absolute;
  bottom: 24px; left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.hero-float-badge i {
  font-size: 1.35rem;
  color: var(--green);
  flex-shrink: 0;
}
.hero-float-badge strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero-float-badge span {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   MARCAS — carrossel infinito
============================================================ */
.section-brands {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.brands-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-lt);
}
.brands-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Wrapper com fade lateral */
.brands-track-wrap {
  position: relative;
  overflow: hidden;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
}

/* Faixa que se move */
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brands-scroll 60s linear infinite;
  will-change: transform;
  contain: layout style;
}
.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card individual de cada marca */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-width: 148px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: background var(--ease);
  cursor: default;
  position: relative;
}
.brand-item:hover {
  background: var(--surface);
}

/* Tooltip no hover */
.brand-item::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 10;
}
.brand-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Logos imagem */
.brand-item img {
  max-height: 38px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(80%) opacity(.6);
  transition: filter .25s ease;
}
.brand-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* SVG inline logos */
.brand-svg {
  height: 38px;
  width: auto;
  max-width: 160px;
  overflow: visible;
  display: block;
  filter: saturate(0) opacity(.55);
  transition: filter .25s ease;
}
.brand-item:hover .brand-svg {
  filter: saturate(1) opacity(1);
}

/* Marca texto (fallback p/ logos sem imagem) */
.brand-item.brand-text span {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color var(--ease);
}
.brand-item.brand-text:hover span {
  color: var(--ink);
}

@media (max-width: 768px) {
  .section-brands { padding: 36px 0; }
  .brands-header { margin-bottom: 24px; }
  .brand-item { min-width: 120px; padding: 0 18px; height: 60px; }
  .brand-item img { max-height: 26px; max-width: 80px; }
  .brands-track-wrap::before,
  .brands-track-wrap::after { width: 60px; }
}

/* ============================================================
   SOBRE
============================================================ */
.section-about {
  padding: 112px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--ink-3); font-weight: 600; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 36px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-3);
  font-weight: 500;
}
.highlight-item i {
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
  width: 18px;
}

/* Chips de segmento */
.about-segments-label {
  font-size: .8125rem;
  color: var(--muted-lt);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-segments-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-segments-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--ink-3);
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-full);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.about-segments-chips span:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lt);
}
.about-segments-chips span i {
  font-size: .75rem;
  color: var(--primary);
}

/* Cards de stats do "Sobre" */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.astat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.astat-card:hover {
  border-color: var(--border-dk);
  box-shadow: var(--sh-md);
}

.astat-card.astat-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.astat-card.astat-featured .astat-val { color: var(--white); }
.astat-card.astat-featured .astat-label { color: rgba(255,255,255,.7); }
.astat-card.astat-featured .astat-desc { color: rgba(255,255,255,.45); }

.astat-val {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.astat-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.astat-desc {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.astat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.astat-row .astat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px;
}
.astat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.astat-row .astat-label {
  font-size: .8125rem;
  color: var(--ink-3);
  line-height: 1.4;
}

.astat-card.astat-trust {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
}
.astat-card.astat-trust > i {
  font-size: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.astat-card.astat-trust strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.astat-card.astat-trust span {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   DIFERENCIAIS
============================================================ */
.section-diff {
  padding: 112px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.diff-card:hover {
  border-color: var(--border-dk);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

/* Card principal — destaque */
.diff-card.diff-card-hero {
  background: var(--ink);
  border-color: var(--ink);
  grid-row: span 1;
}
.diff-card.diff-card-hero .diff-icon {
  background: rgba(255,255,255,.1);
}
.diff-card.diff-card-hero .diff-icon i { color: #93c5fd; }
.diff-card.diff-card-hero h3 { color: var(--white); }
.diff-card.diff-card-hero p { color: rgba(255,255,255,.6); }
.diff-card.diff-card-hero:hover {
  border-color: var(--primary-mid);
  box-shadow: 0 20px 48px rgba(26,75,219,.3);
}

.diff-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,.12);
  border: 1px solid rgba(147,197,253,.2);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-top: 20px;
}
.diff-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #93c5fd;
  flex-shrink: 0;
}

.diff-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.diff-icon i {
  font-size: 1.15rem;
  color: var(--primary);
}

.diff-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.diff-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PAINEL PORTFÓLIO (barra rápida de categorias)
============================================================ */
.section-portfolio-panel {
  padding: 0;
  background: var(--ink-2);
  overflow: hidden;
}
.pp-header {
  padding: 28px 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pp-title {
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.pp-sub {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}
.pp-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.pp-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background var(--ease);
  text-align: center;
}
.pp-cat:last-child { border-right: none; }
.pp-cat:hover {
  background: rgba(255,255,255,.04);
}
.pp-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c, rgba(255,255,255,.7));
  font-size: 1.1rem;
  transition: background var(--ease);
}
.pp-cat:hover .pp-icon { background: rgba(255,255,255,.12); }
.pp-cat span {
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  line-height: 1.3;
  transition: color var(--ease);
}
.pp-cat:hover span { color: rgba(255,255,255,.8); }

/* ============================================================
   PORTFÓLIO (tabs)
============================================================ */
.section-portfolio {
  padding: 112px 0;
  background: var(--white);
}

.pf-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Scroll horizontal de tabs */
.pf-tab-btns-wrap {
  position: relative;
  margin-bottom: 40px;
}
.pf-tab-btns-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent, var(--white));
  pointer-events: none;
}
.pf-tab-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.pf-tab-btns::-webkit-scrollbar { display: none; }

.pf-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-full);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
  letter-spacing: .01em;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.pf-btn:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-dk);
}
.pf-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Paineis */
.pf-panel {
  display: none;
  align-items: flex-start;
  gap: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.pf-panel.active { display: flex; }

.pf-panel-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc, var(--primary));
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pf-panel-content { flex: 1; }
.pf-panel-content h3 {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.pf-panel-content p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pf-tags span {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-3);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.portfolio-cta p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   COMO FUNCIONA
============================================================ */
.section-process {
  padding: 112px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.process-card:hover {
  border-color: var(--border-dk);
  box-shadow: var(--sh-md);
}
/* Linha conectora entre cards */
.process-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -10px;
  width: 20px; height: 1px;
  background: var(--border-dk);
  z-index: 1;
}

.pc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: background var(--ease);
}
.process-card:hover .pc-icon { background: var(--primary); color: var(--white); }

.pc-step {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-bottom: 8px;
}
.process-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.process-cta-micro {
  font-size: .8125rem;
  color: var(--muted-lt);
}

/* ============================================================
   NÚMEROS (antiga seção depoimentos)
============================================================ */
.section-numbers {
  padding: 112px 0;
  background: var(--white);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.number-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.number-card:hover {
  border-color: var(--border-dk);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.number-card-featured {
  background: var(--ink);
  border-color: var(--ink);
}
.number-card-featured .number-icon {
  background: rgba(255,255,255,.1);
  color: #93c5fd;
}
.number-card-featured .number-val { color: var(--white); }
.number-card-featured .number-label { color: rgba(255,255,255,.65); }
.number-card-featured .number-desc { color: rgba(255,255,255,.4); }

.number-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 20px;
}
.number-val {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.number-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.number-desc {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   CONTATO
============================================================ */
.section-contact {
  padding: 112px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* CTA WhatsApp principal */
.contact-wa-hero {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-dk);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  box-shadow: var(--sh-sm);
}
.contact-wa-btn:hover {
  border-color: #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,.16);
  transform: translateY(-2px);
}
.contact-wa-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-wa-text {
  flex: 1;
}
.contact-wa-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-wa-text span {
  font-size: .875rem;
  color: var(--muted);
}
.contact-wa-arrow {
  color: var(--border-dk);
  font-size: .875rem;
  flex-shrink: 0;
  transition: color var(--ease), transform var(--ease);
}
.contact-wa-btn:hover .contact-wa-arrow {
  color: var(--green);
  transform: translateX(3px);
}

/* Links secundários */
.contact-secondary-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-sec-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--ease);
}
.contact-sec-link:hover { color: var(--primary); }
.contact-sec-link i { font-size: .875rem; }
.contact-sec-sep {
  color: var(--border-dk);
  font-size: .875rem;
}

/* Divisor */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  margin: 48px auto 40px;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact-divider span {
  font-size: .8125rem;
  color: var(--muted-lt);
  font-weight: 500;
  white-space: nowrap;
}

/* Formulário */
.contact-form-centered {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-sm);
}
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .01em;
}
.form-group label span { color: var(--primary); }
.label-optional {
  font-size: .75rem;
  color: var(--muted-lt);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-dk);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,75,219,.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.btn-submit {
  width: 100%;
  padding: 15px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  letter-spacing: -.01em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-submit:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,75,219,.28);
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--muted-lt);
  text-align: center;
}

/* Sucesso */
.form-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.success-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success p {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--ink);
}

.footer-top {
  padding: 72px 0;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand-col p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-logo { height: 42px; width: auto; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-contact-item:hover { color: rgba(255,255,255,.85); }
.footer-contact-item i {
  width: 16px;
  color: rgba(255,255,255,.3);
  font-size: .875rem;
  flex-shrink: 0;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-col a:hover { color: rgba(255,255,255,.85); }

.footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-cta-text {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.footer-wa-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  font-size: .875rem;
}
.footer-email-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .875rem;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: var(--r-md);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.footer-email-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING WHATSAPP + BACK-TO-TOP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}

.back-to-top {
  position: fixed;
  bottom: 28px; right: 96px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--border-dk);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: opacity var(--ease), color var(--ease), border-color var(--ease);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

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

/* ≤ 1100px — Grids de 4 colunas → 2 colunas */
@media (max-width: 1100px) {
  .diff-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta-col {
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-cta-text { flex: 0 0 100%; }
}

/* ≤ 960px — Layout principal de 2 colunas colapsando */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(2.25rem, 6vw, 2.75rem); }
  .hero-subtitle { max-width: 100%; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .process-card::after { display: none; }

  .section-about,
  .section-diff,
  .section-portfolio,
  .section-process,
  .section-numbers,
  .section-contact {
    padding: 80px 0;
  }
}

/* ≤ 768px — Tablets */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-split { padding-top: 60px; padding-bottom: 60px; }

  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid-4 { grid-template-columns: 1fr 1fr; }

  .pp-grid { grid-template-columns: repeat(5, 1fr); }
  .pp-cat span { display: none; }
  .pp-cat { padding: 20px 8px; gap: 0; }

  .pf-panel { flex-direction: column; gap: 20px; }

  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-cta-col {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .form-row-3 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }

  .section-about,
  .section-diff,
  .section-portfolio,
  .section-process,
  .section-numbers,
  .section-contact {
    padding: 64px 0;
  }
  .section-header.centered { margin-bottom: 44px; }
}

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

  .hero-title { font-size: 2rem; }
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }
  .hero-stat:not(:first-child) { padding: 0; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-trust-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }

  .diff-grid-4 { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .pp-grid { grid-template-columns: repeat(5, 1fr); }

  .astat-row { grid-template-columns: 1fr; }

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-secondary-links { flex-direction: column; align-items: center; }
  .contact-sec-sep { display: none; }

  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-cta-col { align-items: stretch; }
  .footer-wa-btn, .footer-email-btn { justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.35rem; }
  .back-to-top { bottom: 20px; right: 82px; }

  .section-about,
  .section-diff,
  .section-portfolio,
  .section-process,
  .section-numbers,
  .section-contact {
    padding: 56px 0;
  }
}
