/* ==========================================================================
   ALLEANZA · Site conceito v2 · Veddu Digital
   Direção "Consultoria de rosto quente" (síntese da análise de mercado
   VR + Flash + Caju + Ticket + Alelo + Pluxee + Hirayama, 16/07/2026):
   base creme quente, navy da marca como cor de TEXTO, lima exclusivo do
   CTA (sempre com texto navy), teal editorial, tipografia Bricolage
   Grotesque + Plus Jakarta Sans em sentence case, botões pill e a
   assinatura "orelha do lobo": 3 cantos redondos + 1 faceta diagonal.
   O navy escuro sobrevive em UM lugar por página: o painel de conversão.
   ========================================================================== */

:root {
  /* Paleta com papéis */
  --paper: #fbf8f3;      /* fundo base, creme quente */
  --paper-2: #f4efe6;    /* fundo alternado de seção */
  --white: #ffffff;
  --ink: #233f57;        /* navy da marca: texto, títulos, ícones */
  --ink-soft: #5a7085;   /* texto secundário */
  --navy-deep: #1a3040;  /* painel de conversão + footer (único bloco escuro) */
  --teal: #036675;       /* cor editorial: eyebrows, links, ícones */
  --teal-tint: #e4efef;  /* fundo de apoio */
  --lime: #c4d846;       /* EXCLUSIVO: CTA, checks, highlight de título */
  --lime-tint: #f3f7de;  /* fundo de UMA seção de destaque */
  --lime-press: #a8bc2e; /* hover do CTA */
  --line: #eae3d6;       /* bordas sobre creme */
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: rgba(35, 63, 87, 0.14); /* única sombra do site, navy translúcido */

  /* Tipos */
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Métricas */
  --container: 1180px;
  --r-input: 12px;
  --r-card: 20px;
  --r-mega: 32px;
  --facet: var(--paper); /* cor da faceta da "orelha do lobo" (fundo atrás do elemento) */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: #0a8a8f; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 800;
}
h3, h4 { font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; }
strong { color: var(--ink); font-weight: 700; }
.section-dark strong, .cta-band strong, footer strong { color: var(--lime); }

::selection { background: var(--lime); color: var(--ink); }

/* Destaque de palavra no título: marcador lima no baseline */
.hl, .accent {
  color: inherit;
  background-image: linear-gradient(180deg, transparent 64%, var(--lime) 64%, var(--lime) 94%, transparent 94%);
  background-repeat: no-repeat;
  padding: 0 2px;
}

/* ---------- Utilitários ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Assinatura "orelha do lobo": 3 cantos redondos + faceta no canto superior direito */
.ear {
  position: relative;
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  overflow: hidden;
}
.ear::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 36px; height: 36px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 3;
  pointer-events: none;
}
.ear-mega { border-radius: var(--r-mega); border-top-right-radius: 0; }
.ear-mega::before { width: 52px; height: 52px; }
.clip-ear, .clip-ear-left { border-radius: var(--r-card); overflow: hidden; }

/* Textura de marca: lobo em outline sutil */
.wolf-texture { position: relative; }
.wolf-texture::after {
  content: "";
  position: absolute; right: -40px; bottom: -60px;
  width: 340px; height: 340px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* ---------- Barra superior ---------- */
.topbar {
  background: var(--navy-deep);
  color: #b8c6d4;
  font-size: 0.8125rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a { color: #d7e2ec; font-weight: 500; }
.topbar a:hover { color: var(--lime); }
.topbar-contacts { display: flex; gap: 18px; align-items: center; }
.topbar-contacts svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 5px; fill: var(--lime); }
.topbar-addr { display: none; }
@media (min-width: 900px) { .topbar-addr { display: inline; color: #8fa2b5; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 32px -14px var(--shadow); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav-drop > button {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 13px;
  background: none; border: 0; cursor: pointer;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav > a:hover, .nav-drop > button:hover {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav > a[aria-current="page"] {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav-drop { position: relative; }
.nav-drop > button::after {
  content: ""; display: inline-block; margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 310px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  box-shadow: 0 18px 44px -12px var(--shadow);
  padding: 10px;
  display: none;
}
.nav-drop.open .nav-drop-menu { display: block; }
@media (min-width: 1201px) and (hover: hover) {
  .nav-drop:hover .nav-drop-menu { display: block; }
  /* Ponte transparente: o cursor pode atravessar o espaçamento sem fechar o menu. */
  .nav-drop-menu::before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -12px;
    height: 12px;
  }
}
.nav-drop-menu a {
  display: block; padding: 11px 14px;
  color: var(--ink); font-weight: 600; font-size: 0.9375rem;
  border-radius: 12px;
}
.nav-drop-menu a:hover { background: var(--lime-tint); color: var(--ink); }
.nav-drop-menu a small { display: block; color: var(--ink-soft); font-size: 0.78rem; font-weight: 400; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  border-radius: 3px;
  margin: 5px 0; transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1200px) {
  .nav {
    position: fixed; inset: 0; top: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: var(--paper);
    padding: 120px 28px 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    z-index: 55;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav > a, .nav-drop > button { font-size: 1.2rem; width: 100%; text-align: left; border-radius: 14px; }
  .nav-drop { width: 100%; }
  .nav-drop-menu {
    position: static; display: none; background: var(--paper-2);
    border: 0; box-shadow: none; min-width: 0;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-toggle { display: block; z-index: 61; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header-cta { display: none; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  padding: 15px 28px;
  border: 0; cursor: pointer;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--white); }
.btn-navy { background: var(--ink); color: var(--white); }
.btn-navy:hover { background: var(--lime); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--lime); color: var(--lime); }
.btn-ghost-dark {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ghost-dark:hover { color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Hero (mega-card navy flutuando no creme) ---------- */
.hero { background: var(--paper); padding: 26px 0 0; }
.hero .container { position: relative; }
.hero-card {
  position: relative;
  background: var(--navy-deep);
  color: #e9eff5;
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  margin-top: 14px;
}
.hero-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 52px; height: 52px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 4;
}
.hero-card::after {
  content: "";
  position: absolute; left: -60px; bottom: -80px;
  width: 380px; height: 380px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.05;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-copy { padding: clamp(40px, 5.5vw, 76px) clamp(28px, 4.5vw, 64px); align-self: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: #7fd4c8;
  margin: 0 0 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 0.4em;
}
.hero h1 .accent, .hero h1 .hl { color: var(--white); }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #c3d0dc;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600;
  color: #e6eef4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 15px;
  border-radius: 999px;
}
.trust-chip svg { width: 15px; height: 15px; fill: var(--lime); }

.hero-media { position: relative; min-height: 340px; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(26, 48, 64, 0) 22%);
  z-index: 1;
}

/* Chips flutuantes sobre a foto */
.float-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem; font-weight: 700;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 12px 32px -8px var(--shadow);
}
.float-chip svg { width: 17px; height: 17px; fill: var(--lime-press); flex-shrink: 0; }
.float-chip small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.75rem; }
.float-chip.pos-bl { left: 22px; bottom: 24px; }
.float-chip.pos-tr { right: 22px; top: 70px; }

/* Captura rápida no hero */
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 12px;
}
.hero-quick input, .hero-quick select {
  flex: 1 1 190px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.hero-quick input:focus, .hero-quick select:focus { outline: 3px solid rgba(196, 216, 70, 0.5); }
.hero-quick-note { font-size: 0.78rem; color: #8fa2b5; margin: 0 0 22px; }

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; order: -1; }
  .hero-media::before { background: linear-gradient(0deg, var(--navy-deep) 0%, rgba(26, 48, 64, 0) 30%); }
}

/* Hero interno (páginas de solução) */
.hero-page .hero-copy { padding: clamp(34px, 4.5vw, 60px) clamp(28px, 4.5vw, 56px); }
.hero-page h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.hero-page .hero-media { min-height: 300px; }

/* Faixa de prova logo abaixo do hero */
.proof-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 34px;
  padding: 26px 0 6px;
}
.proof-strip span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.proof-strip .dot { color: var(--lime-press); font-size: 1.3rem; line-height: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 4px 0 12px;
}
.breadcrumbs a { color: var(--teal); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumbs .sep { margin: 0 8px; color: #b9c1b4; }

/* ---------- Seções ---------- */
.section { padding: clamp(60px, 8.5vw, 104px) 0; }
.section-tight { padding: clamp(40px, 5.5vw, 64px) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--paper-2); }
.section-teal { background: var(--teal-tint); }
.section-lime { background: var(--lime-tint); }

/* .section-dark agora é o painel de peso (usar com moderação: 1 por página) */
.section-dark {
  background: var(--navy-deep);
  color: #d6e0e9;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--lime); }
.section-dark .eyebrow { color: #7fd4c8; }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.65rem); max-width: 720px; font-weight: 800; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 700px; }
.section-dark .lead { color: #b9c7d3; }

.section-head { margin-bottom: clamp(34px, 4.5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-title, .section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Grid de cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  padding: 30px 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.section-white .card { --facet: var(--white); border-color: #efe9dd; }
.section-white .card { border-color: var(--line); }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -14px var(--shadow); }
.card h3 { font-size: 1.28rem; margin-top: 18px; }
.card p { color: var(--ink-soft); font-size: 0.965rem; flex-grow: 1; }
.card-link {
  font-weight: 700; font-size: 0.92rem;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.card-link::after { content: "→"; transition: transform 0.15s; }
.card:hover .card-link::after { transform: translateX(4px); }

.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--teal-tint);
  border-radius: 50%;
}
.card-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--teal); stroke-width: 1.7; }

.card-img { margin: -30px -28px 0; }
.card-img img { width: 100%; height: 200px; object-fit: cover; }

.section-dark .card { background: rgba(255, 255, 255, 0.06); border-color: var(--line-dark); --facet: var(--navy-deep); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: #a7b7c4; }
.section-dark .card-link { color: #7fd4c8; }

/* ---------- Split (texto + imagem) ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}
.split-media { position: relative; }
.split-media img {
  position: relative;
  width: 100%; height: 100%; min-height: 340px; max-height: 540px;
  object-fit: cover;
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  z-index: 1;
}
.split-media::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.split-media::after {
  content: "";
  position: absolute; left: 20px; top: 20px; right: -16px; bottom: -16px;
  background: var(--teal-tint);
  border-radius: var(--r-mega);
  z-index: 0;
}
.section-white .split-media { --facet: var(--white); }
.section-lime .split-media::after, .section-teal .split-media::after { background: var(--white); }
.section-dark .split-media { --facet: var(--navy-deep); }
.section-dark .split-media::after { background: rgba(255, 255, 255, 0.07); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li {
  position: relative;
  padding: 7px 0 7px 38px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 24px; height: 24px;
  background: var(--lime);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute; left: 7px; top: 16px;
  width: 9px; height: 5px;
  border-left: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(-45deg);
}

/* ---------- Faixa de números (gente, não produto) ---------- */
.stat-band {
  background: var(--lime-tint);
  color: var(--ink);
  border: 0;
  position: relative;
  overflow: hidden;
}
.stat-band::after {
  content: "";
  position: absolute; right: -50px; top: 50%;
  width: 300px; height: 300px;
  transform: translateY(-50%) rotate(-8deg);
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; z-index: 1; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 3.7rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem; color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 600;
}
.section-dark.stat-band h2 { color: var(--ink); }

/* ---------- Passos (como funciona) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; position: relative; padding-top: 64px; }
.step::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}
.step h3 { font-size: 1.13rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }
.section-dark .step p { color: #a7b7c4; }
.section-dark .step h3 { color: var(--white); }

/* ---------- Tabela comparativa ---------- */
.table-wrap { overflow-x: auto; margin: 1.5em 0; border-radius: var(--r-card); border: 1px solid var(--line); }
table.compare {
  width: 100%; border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
  min-width: 640px;
}
table.compare caption {
  caption-side: bottom; text-align: left;
  font-size: 0.8rem; color: var(--ink-soft); padding: 10px 16px;
  background: var(--white);
}
table.compare th, table.compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  background: var(--ink); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700;
}
table.compare tbody tr:nth-child(even) { background: #fdfcf7; }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td.yes { color: #6d8410; font-weight: 700; }
table.compare td.no { color: #b0433a; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.06rem; font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  width: 30px; height: 30px; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 500; color: var(--ink);
  background: var(--lime-tint);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--lime); }
.faq details > div { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.985rem; }
.faq details > div p:last-child { margin-bottom: 0; }
.section-dark .faq details { background: rgba(255, 255, 255, 0.06); border-color: var(--line-dark); }
.section-dark .faq summary { color: var(--white); }
.section-dark .faq details > div { color: #b3c1cd; }

/* ---------- Avaliações Google ---------- */
.review-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.review-score {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.section-dark .review-score { color: var(--white); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 22px; height: 22px; fill: #f5b301; }
.review-meta { font-size: 0.9rem; color: var(--ink-soft); }
.review-meta a { color: var(--teal); font-weight: 700; }
.section-dark .review-meta { color: #a4b4c2; }
.section-dark .review-meta a { color: #7fd4c8; }
.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  padding: 26px;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 28px; height: 28px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.section-teal .review-card { --facet: var(--teal-tint); }
.review-card .stars svg { width: 15px; height: 15px; }
.review-card blockquote {
  margin: 14px 0 16px; padding: 0;
  font-size: 0.975rem; color: var(--ink);
}
.review-card cite {
  font-style: normal;
  font-weight: 700; font-size: 0.9rem;
  color: var(--teal);
}
.review-card cite small { display: block; color: var(--ink-soft); font-weight: 500; }
.section-dark .review-card { background: rgba(255, 255, 255, 0.07); border-color: var(--line-dark); --facet: var(--navy-deep); }
.section-dark .review-card blockquote { color: #ccd8e2; }

/* ---------- Painel de conversão (único bloco escuro) ---------- */
.cta-band {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.cta-band-bg { display: none; }
.cta-band::after {
  content: "";
  position: absolute; right: -60px; bottom: -90px;
  width: 380px; height: 380px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band-inner {
  padding: clamp(56px, 8vw, 92px) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem); max-width: 560px; margin: 0; }
.cta-band p { color: #bcc9d5; margin: 10px 0 0; max-width: 520px; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Formulário ---------- */
.form-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.form-panel::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.form-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
}
.form-field input, .form-field select, .form-field textarea {
  min-width: 0; width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-input);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Calculadora ---------- */
.calc-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
}
.calc-panel::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.section-dark .calc-panel, .section-teal .calc-panel { --facet: var(--teal-tint); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field { margin-bottom: 24px; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}
.calc-field output {
  font-size: 1.02rem; color: var(--teal); font-weight: 800;
}
.calc-field input[type="range"] {
  width: 100%; accent-color: var(--teal); cursor: pointer;
}
.calc-field select, .calc-field input[type="number"] {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-input);
  color: var(--ink);
}
.calc-results { display: grid; gap: 14px; align-content: start; }
.calc-result {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.calc-result .label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.calc-result .value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.calc-result.highlight { background: var(--lime-tint); border-color: var(--lime); }
.calc-result.highlight .value { color: var(--ink); }
.calc-disclaimer { font-size: 0.8rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Blog ---------- */
.post-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -14px var(--shadow); }
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.post-tag {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--teal);
}
.post-card h3 { font-size: 1.25rem; margin: 10px 0 8px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal); }
.post-card p { font-size: 0.93rem; color: var(--ink-soft); flex-grow: 1; }
.post-date { font-size: 0.8rem; color: var(--ink-soft); }

/* Artigo */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.65rem; margin-top: 1.8em; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.5em; }
.article-body img { border-radius: var(--r-card); margin: 1.6em 0; }
.article-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--ink-soft);
}
.article-callout {
  background: var(--lime-tint);
  border-left: 4px solid var(--lime);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin: 1.6em 0;
  font-size: 0.975rem;
}
.article-callout.dark {
  background: var(--navy-deep); color: #dde6ee;
  border-left-color: var(--lime);
}
.article-callout.dark strong { color: var(--lime); }
.article-callout.dark a { color: #7fd4c8; }
.article-disclaimer {
  font-size: 0.82rem; color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px; margin-top: 2.4em;
}

/* ---------- Selos / badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
  border-radius: 999px;
}
.badge svg { width: 17px; height: 17px; fill: var(--lime-press); }
.section-dark .badge { background: rgba(255, 255, 255, 0.08); border-color: var(--line-dark); color: #dce6ee; }
.section-dark .badge svg { fill: var(--lime); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #9fb0be;
  font-size: 0.925rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(56px, 7vw, 84px) 0 48px;
}
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { margin-top: 18px; max-width: 300px; font-size: 0.9rem; }
.site-footer h4 {
  color: var(--lime);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b6c4d1; }
.footer-links a:hover { color: var(--lime); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 14px; padding-left: 26px; position: relative; }
.footer-contact svg {
  position: absolute; left: 0; top: 4px;
  width: 15px; height: 15px; fill: var(--lime);
}
.footer-contact a { color: #d7e2ec; font-weight: 600; }
.footer-contact a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: #6d8093;
}
.footer-bottom a { color: #8fa2b5; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(26, 48, 64, 0.35);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float .pulse { animation: none; }
}

/* ---------- Âncoras de conteúdo denso ---------- */
.anchor-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 18px 0;
}
.anchor-nav a {
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
}
.anchor-nav a:hover { border-color: var(--lime); color: var(--teal); }

/* ---------- Impressão ---------- */
@media print {
  .topbar, .site-header, .wa-float, .cta-band, .site-footer { display: none; }
}

/* ========================================================================== 
   ALLEANZA · Redesign editorial 2026
   Tradução do conceito visual aprovado para um sistema multipágina.
   ========================================================================== */

:root {
  --paper: #f8f5ef;
  --paper-2: #f1ece3;
  --ink: #14324a;
  --ink-soft: #536b7f;
  --navy-deep: #0d2b43;
  --teal: #036675;
  --teal-tint: #e7f4f2;
  --lime: #c9dd2f;
  --lime-tint: #f2f6d9;
  --lime-press: #adc31c;
  --line: #e2ddd3;
  --shadow: rgba(13, 43, 67, 0.16);
  --container: 1560px;
  --r-card: 24px;
  --r-mega: 42px;
}

body {
  font-size: 1rem;
  line-height: 1.62;
  background: var(--paper);
}

.container { padding-inline: clamp(22px, 6.65vw, 112px); }

.topbar { padding: 8px 0; font-size: 0.75rem; }
.topbar .container { max-width: 1560px; }
.site-header { background: rgba(248, 245, 239, 0.97); }
.site-header .container { max-width: 1560px; min-height: 92px; }
.brand img { height: 54px; }
.nav { gap: 8px; }
.nav > a, .nav-drop > button { padding: 11px 14px; font-size: 0.9rem; }
.header-cta .btn { padding-inline: 24px; }

.btn {
  min-height: 52px;
  padding: 14px 25px;
  box-shadow: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime:hover { background: var(--lime-press); color: var(--ink); box-shadow: 0 12px 26px -16px var(--shadow); }
.btn-ghost { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); background: var(--white); }
.btn-ghost:hover { color: var(--teal); box-shadow: inset 0 0 0 1.5px var(--teal); }

/* Hero claro e assimétrico, comum a todo o site */
.hero { padding: clamp(30px, 3.2vw, 48px) 0 0; overflow: hidden; }
.hero-card {
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  overflow: visible;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  gap: clamp(46px, 5vw, 84px);
  align-items: center;
  margin-top: 0;
}
.hero-card::before, .hero-card::after { display: none; }
.hero-copy { padding: 20px 0 36px; }
.hero-eyebrow { color: #20bfc0; margin-bottom: 22px; font-size: 0.78rem; }
.hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 760px;
  margin-bottom: 0.38em;
}
.hero h1 .accent, .hero h1 .hl { color: var(--ink); }
.hero-sub { color: var(--ink-soft); font-size: clamp(1rem, 1.18vw, 1.16rem); max-width: 620px; margin-bottom: 24px; }
.hero-media {
  min-height: clamp(480px, 34vw, 550px);
  border-radius: 54px 54px 54px 132px;
  overflow: visible;
  isolation: isolate;
  align-self: start;
}
.hero-media::before { display: none; }
.hero-media img {
  border-radius: inherit;
  box-shadow: 0 30px 70px -42px var(--shadow);
}
.hero-media .pos-tr { top: 24px; right: 24px; }
.hero-media .pos-bl {
  left: auto; right: 28px; bottom: -24px;
  max-width: 230px;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 22px 54px -24px var(--shadow);
}
.hero-quick { max-width: 720px; flex-wrap: nowrap; }
.hero-quick input, .hero-quick select {
  min-width: 270px;
  border: 1.5px solid var(--line);
  padding: 15px 20px;
}
.hero-quick .btn { white-space: nowrap; }
.hero-quick-note { color: var(--ink-soft); }
.hero-trust { gap: 0; margin-top: 28px; }
.trust-chip {
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 6px 22px 6px 0;
  margin-right: 22px;
  font-size: 0.8rem;
}
.trust-chip:last-child { border-right: 0; margin-right: 0; }
.trust-chip svg { width: 20px; height: 20px; fill: var(--lime-press); }
.float-chip { border: 1px solid rgba(255,255,255,.8); }
.proof-strip {
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding: 12px 0 12px;
}
.proof-strip span { font-family: var(--font-body); font-size: 0.9rem; color: #737b82; }

/* Páginas internas mantêm a mesma linguagem com uma escala mais compacta */
.hero-page { padding-top: 24px; }
.hero-page .breadcrumbs { padding-bottom: 24px; }
.hero-page .hero-card { grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); gap: clamp(42px, 5vw, 78px); }
.hero-page .hero-copy { padding: 12px 0 42px; }
.hero-page h1 { font-size: clamp(2.35rem, 3.6vw, 3.85rem); }
.hero-page .hero-media { min-height: clamp(390px, 35vw, 520px); border-radius: 42px 42px 42px 104px; }
.hero-page .hero-trust { margin-top: 24px; }
.hero-page .trust-chip { padding-right: 14px; margin-right: 14px; }

/* Seções e componentes */
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section-tight { padding: clamp(54px, 6vw, 84px) 0; }
.section-head { margin-bottom: clamp(34px, 4vw, 58px); }
.section-title { letter-spacing: -0.04em; }
.eyebrow { color: var(--teal); letter-spacing: .11em; }
.card, .review-card, .form-panel, .calc-panel, .post-card {
  border-color: rgba(20, 50, 74, .1);
  box-shadow: 0 24px 54px -42px var(--shadow);
}
.card { padding: clamp(26px, 3vw, 38px); }
.card:hover, .post-card:hover { transform: translateY(-6px); box-shadow: 0 32px 64px -38px var(--shadow); }
.card-icon { background: var(--lime-tint); color: var(--ink); }
.section-white { background: #fffdfa; }
.section-cream { background: var(--paper-2); }
.section-teal { background: var(--teal-tint); }
.stat-band { background: var(--lime-tint); }
.cta-band { background: var(--navy-deep); }
.cta-band-inner { padding-block: clamp(72px, 8vw, 112px); }
.form-field input, .form-field select, .form-field textarea,
.calc-field select, .calc-field input[type="number"] { background: #fbfaf7; }
.faq details { border-radius: 18px; overflow: hidden; }
.site-footer { margin-top: 0; }
.wa-float { width: 58px; height: 58px; }

@media (max-width: 1200px) {
  .site-header .container { min-height: 78px; }
  .brand img { height: 46px; }
  .nav { background: var(--paper); }
}

@media (max-width: 960px) {
  .hero-card, .hero-page .hero-card { grid-template-columns: 1fr; gap: 34px; }
  .hero-media, .hero-page .hero-media { order: 0; min-height: 480px; border-radius: 38px 38px 38px 86px; }
  .hero-copy, .hero-page .hero-copy { padding-bottom: 0; }
  .hero-trust { margin-bottom: 14px; }
  .proof-strip { margin-top: 64px; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .topbar-addr { display: none; }
  .topbar .container { justify-content: center; }
  .topbar-contacts a:first-child { display: none; }
  .hero { padding-top: 28px; }
  .hero h1, .hero-page h1 { font-size: clamp(2.35rem, 12.2vw, 3.25rem); }
  .hero-quick { flex-direction: column; }
  .hero-quick input { width: 100%; min-width: 0; min-height: 52px; flex: none; }
  .hero-quick .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 8px; }
  .trust-chip, .hero-page .trust-chip { margin: 0; padding: 4px 10px 4px 0; border: 0; }
  .hero-media, .hero-page .hero-media { min-height: 390px; border-radius: 28px 28px 28px 68px; }
  .hero-media .pos-tr { display: none; }
  .hero-media .pos-bl { right: 16px; bottom: -20px; font-size: .78rem; padding: 14px 16px; }
  .proof-strip { justify-content: flex-start; gap: 10px 18px; }
  .proof-strip .dot { display: none; }
  .section { padding-block: 72px; }
}

/* ---------- Home hero · fidelity pass from approved concept ---------- */
.hero-home .hero-card {
  grid-template-columns: minmax(0, .97fr) minmax(520px, 1.03fr);
  gap: clamp(52px, 5.4vw, 92px);
}
.hero-home .hero-copy { padding-top: 8px; }
.hero-home .hero-sub {
  max-width: 530px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.hero-home .hero-quick { gap: 8px; }
.hero-input-wrap {
  position: relative;
  flex: 1 1 300px;
  display: flex;
  align-items: center;
}
.hero-input-wrap > i {
  position: absolute;
  left: 18px;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 1.25rem;
  pointer-events: none;
}
.hero-home .hero-quick .hero-input-wrap input {
  width: 100%;
  padding-left: 48px;
}
.hero-home .hero-quick .btn > i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: .9rem;
}
.hero-home .hero-quick-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.hero-home .hero-quick-note i {
  color: var(--ink);
  font-size: 1.1rem;
}
.hero-home .hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 26px;
}
.hero-home .trust-chip {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 22px;
  font-size: .76rem;
  line-height: 1.35;
  color: var(--ink-soft);
}
.hero-home .trust-chip:first-child { padding-left: 0; }
.hero-home .trust-chip i {
  font-size: 2rem;
  color: var(--lime-press);
}
.hero-home .trust-chip strong {
  color: var(--ink);
  font-size: .82rem;
}

.hero-home .hero-media {
  min-height: 570px;
  overflow: visible;
  border-radius: 52px 52px 52px 126px;
}
.hero-home .hero-media > img { position: absolute; }
.hero-home .hero-media .hero-photo {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  box-shadow: 0 30px 70px -42px var(--shadow);
}
.hero-home .hero-media .hero-orbit {
  z-index: 1;
  width: 570px;
  height: 570px;
  left: auto;
  top: auto;
  right: -190px;
  bottom: -90px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}
.hero-home .hero-media .pos-tr { z-index: 3; }
.hero-home .hero-media .pos-tr i { color: var(--lime-press); font-size: 1rem; }
.hero-assurance-card {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: -42px;
  width: 190px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 18px;
  border: 1px solid rgba(20, 50, 74, .08);
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 48px -28px var(--shadow);
}
.hero-assurance-card > i {
  margin-bottom: 10px;
  color: var(--lime-press);
  font-size: 2rem;
}
.hero-assurance-card strong { line-height: 1.25; }
.hero-assurance-card small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1.4;
}

/* Logos reais em movimento contínuo: somente marcas comprovadas no projeto. */
.partner-authority {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  margin-top: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-authority > p {
  max-width: 170px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-carousel {
  min-width: 0;
  overflow: hidden;
}
.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(48px, 5vw, 86px);
  animation: partner-marquee 24s linear infinite;
}
.partner-carousel:hover .partner-track { animation-play-state: paused; }
.partner-logo,
.partner-context {
  flex: 0 0 auto;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #68737a;
  white-space: nowrap;
}
.partner-logo img {
  display: block;
  width: auto;
  max-width: 120px;
  height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
}
.partner-vr img { width: 36px; height: 36px; border-radius: 8px; }
.partner-vr strong { color: #68737a; font-size: .9rem; }
.partner-logo img[src$="claro.png"] {
  height: 38px;
  filter: brightness(0) saturate(100%);
  opacity: .58;
}
.partner-logo img[src$="tim.svg"] {
  height: 31px;
  filter: brightness(0) saturate(100%);
  opacity: .58;
}
.partner-context { min-width: 300px; font-size: .86rem; font-weight: 600; }
.partner-context i { color: var(--lime-press); font-size: 1.25rem; }

@keyframes partner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 43px)); }
}

@media (max-width: 1200px) {
  .hero-home .hero-card { grid-template-columns: 1fr; }
  .hero-home .hero-media { min-height: 560px; margin-top: 20px; }
  .hero-home .hero-copy { max-width: 760px; }
}

@media (max-width: 640px) {
  .hero-home h1 { font-size: clamp(2.25rem, 9.6vw, 2.5rem); line-height: 1.08; }
  .hero-home .hero-sub { max-width: none; }
  .hero-home .hero-quick { gap: 10px; }
  .hero-input-wrap { flex: none; width: 100%; }
  .hero-home .hero-trust { grid-template-columns: 1fr; gap: 16px; }
  .hero-home .trust-chip,
  .hero-home .trust-chip:first-child { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-home .trust-chip:last-child { border-bottom: 0; }
  .hero-home .hero-media { min-height: 410px; border-radius: 28px 28px 28px 72px; }
  .hero-home .hero-media .hero-orbit { width: 390px; height: 390px; right: -150px; bottom: -70px; }
  .hero-assurance-card { right: 12px; bottom: -58px; width: 166px; min-height: 142px; padding: 14px; }
  .hero-assurance-card > i { margin-bottom: 6px; font-size: 1.65rem; }
  .hero-assurance-card small { font-size: .64rem; }
  .partner-authority { grid-template-columns: 1fr; gap: 16px; margin-top: 92px; }
  .partner-authority > p { max-width: none; }
  .partner-track { gap: 46px; animation-duration: 20s; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
  .partner-carousel { overflow-x: auto; }
}

/* ---------- Enterprise positioning · imagery and partner proof ---------- */
.partner-authority .partner-logo {
  min-width: 142px;
}
.partner-authority .partner-logo img {
  height: 34px;
  max-width: 148px;
  filter: none;
  opacity: 1;
}
.partner-authority .partner-logo img[src$="alymente.svg"] {
  height: 62px;
  transform: scale(1.35);
}
.partner-authority .partner-logo img[src$="unimed.png"] { height: 38px; }

.service-partners {
  position: relative;
  z-index: 3;
  padding: 0 0 28px;
  background: var(--paper);
}
.service-partners .container {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-block: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-partners-copy { max-width: 220px; }
.service-partners-copy p { margin: 0; }
.service-partners-kicker {
  color: var(--turq);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.service-partners-title {
  margin-top: 5px !important;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.3;
}
.service-partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  min-width: 0;
}
.service-partners-logos img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 158px;
  object-fit: contain;
}
.service-partners-logos img[src$="alymente.svg"] {
  height: 88px;
  margin-inline: 6px;
}
.service-partners-logos img[src$="unimed.png"] { height: 46px; }
.service-partners-logos.is-single { justify-content: flex-start; }
.service-partners-logos.is-single img { height: 46px; max-width: 190px; }

.hero-page .hero-media > img[src*="enterprise"] {
  object-position: center;
}

@media (max-width: 760px) {
  .service-partners .container { grid-template-columns: 1fr; gap: 18px; }
  .service-partners-logos { justify-content: flex-start; flex-wrap: wrap; gap: 24px 32px; }
  .service-partners-logos img { height: 30px; max-width: 120px; }
}

/* ---------- Menu global e hero aprovados ---------- */
.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
}
.topbar .container { justify-content: flex-end; }
.topbar-contacts { margin-left: auto; }
.topbar-addr { display: none !important; }

.site-header .container { min-height: 104px; }
.brand img { height: 64px; }
.nav { gap: 13px; }
.nav > a,
.nav-drop > button {
  padding: 11px 10px;
  font-size: .94rem;
  font-weight: 600;
}
.nav-drop.has-current > button,
.nav-drop > button[aria-current="page"] {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav > a:focus-visible,
.nav-drop > button:focus-visible,
.nav-toggle:focus-visible,
.header-cta .btn:focus-visible,
.hero-home-actions a:focus-visible {
  outline: 3px solid var(--lime-press);
  outline-offset: 3px;
}
.header-cta .btn {
  min-height: 52px;
  padding-inline: 26px;
}

.hero-home { padding-top: clamp(28px, 3vw, 44px); }
.hero-home .hero-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(560px, .92fr);
  gap: clamp(56px, 5vw, 82px);
}
.hero-home .hero-copy { padding: 10px 0 28px; }
.hero-home h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 2.75vw, 3rem);
  line-height: 1.05;
}
.hero-home h1 .hl {
  box-shadow: inset 0 -.22em 0 var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-home .hero-sub {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}
.hero-home-actions {
  align-items: center;
  margin-bottom: 16px;
}
.hero-home-actions .btn { min-height: 54px; }
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 700;
}
.hero-secondary-link:hover { color: var(--teal); }
.hero-secondary-link i { color: var(--lime-press); font-size: 1.35rem; }
.hero-home .hero-quick-note { margin-bottom: 0; }
.hero-home .hero-media {
  min-height: 540px;
  border-radius: 78px 78px 78px 128px;
}
.hero-assurance-card {
  width: 238px;
  min-height: 96px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  text-align: left;
}
.hero-assurance-card > i {
  flex: 0 0 auto;
  margin: 0;
  font-size: 2rem;
}
.hero-assurance-card strong { font-size: 1rem; }
.hero-assurance-card-top {
  top: 56%;
  right: -16px;
  bottom: auto;
}
.hero-assurance-card-bottom {
  right: -16px;
  bottom: 16px;
}
.partner-authority {
  margin-top: 20px;
  padding-block: 24px;
}
.hero-home .partner-authority.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1320px) {
  .nav { gap: 4px; }
  .nav > a,
  .nav-drop > button { padding-inline: 8px; font-size: .88rem; }
  .header-cta .btn { padding-inline: 20px; }
}

@media (max-width: 1200px) {
  .site-header .container { min-height: 82px; }
  .brand img { height: 48px; }
  .nav { gap: 5px; }
  .nav-drop-menu { border-radius: 16px; }
  .nav-drop.has-current > button { background: var(--teal-tint); }
  .hero-home .hero-card { grid-template-columns: 1fr; }
  .hero-home .hero-copy { max-width: 790px; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .hero-home h1 { font-size: clamp(2.25rem, 9.6vw, 2.5rem); line-height: 1.08; }
  .hero-home-actions { align-items: stretch; flex-direction: column; }
  .hero-home-actions .btn,
  .hero-secondary-link { width: 100%; justify-content: center; }
  .hero-home .hero-media { min-height: 420px; border-radius: 32px 32px 32px 72px; }
  .hero-assurance-card {
    right: 10px;
    width: 176px;
    min-height: 76px;
    padding: 12px 14px;
  }
  .hero-assurance-card-top { top: auto; bottom: 94px; }
  .hero-assurance-card-bottom { bottom: 10px; }
  .hero-assurance-card > i { font-size: 1.5rem; }
  .hero-assurance-card strong { font-size: .82rem; }
  .partner-authority { margin-top: 76px; }
}

/* ---------- Home · sistema editorial corporativo ---------- */
.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: end;
  gap: clamp(44px, 7vw, 120px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.home-section-intro .section-title { margin-bottom: 0; }
.home-section-intro .lead { max-width: 610px; margin: 0; }
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.text-cta:hover { color: var(--teal); }
.text-cta i { font-size: 1.15rem; }

/* Portfólio principal */
.home-portfolio { overflow: hidden; }
.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: 24px;
}
.portfolio-feature,
.portfolio-row {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 50, 74, .1);
  background: var(--white);
  box-shadow: 0 32px 72px -54px var(--shadow);
}
.portfolio-feature { min-height: 630px; border-radius: 36px 36px 36px 100px; }
.portfolio-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(5, 27, 43, .9) 100%);
  pointer-events: none;
}
.portfolio-feature > img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.portfolio-feature-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: clamp(30px, 4vw, 48px);
  color: var(--white);
}
.portfolio-feature h3 { color: var(--white); font-size: clamp(2rem, 3vw, 3rem); margin: 8px 0 10px; }
.portfolio-feature p { max-width: 640px; margin-bottom: 18px; color: #dae4ea; }
.portfolio-feature .card-link { color: var(--white); }
.portfolio-index { color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.portfolio-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .73rem; font-weight: 700; }
.portfolio-stack { display: grid; gap: 24px; }
.portfolio-row {
  min-height: 303px;
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(220px, 1.18fr);
  align-items: stretch;
  border-radius: 30px;
}
.portfolio-row img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-row > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 3vw, 38px); }
.portfolio-row h3 { margin: 8px 0 10px; font-size: clamp(1.35rem, 2vw, 1.85rem); }
.portfolio-row p { color: var(--ink-soft); font-size: .92rem; }

/* Consultoria e provas */
.home-consulting { overflow: hidden; }
.consulting-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr); align-items: center; gap: clamp(48px, 7vw, 112px); }
.consulting-copy .lead { margin-bottom: 28px; }
.consulting-visual { position: relative; min-height: 530px; }
.consulting-visual > img { width: 100%; height: 530px; object-fit: cover; border-radius: 40px 40px 40px 108px; }
.consulting-visual::before { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -54px; border-radius: 50%; background: var(--lime-tint); z-index: -1; }
.consulting-note {
  position: absolute;
  left: -44px;
  bottom: 28px;
  width: min(340px, 70%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 250, .96);
  box-shadow: 0 28px 56px -34px var(--shadow);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.5;
}
.consulting-note i { color: var(--teal); font-size: 2rem; }
.consulting-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(56px, 7vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.consulting-pillars article { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 30px clamp(18px, 3vw, 42px); border-right: 1px solid var(--line); }
.consulting-pillars article:first-child { padding-left: 0; }
.consulting-pillars article:last-child { border-right: 0; }
.consulting-pillars article > span { color: var(--lime-press); font-family: var(--font-display); font-size: .9rem; font-weight: 800; }
.consulting-pillars h3 { margin: 0 0 7px; font-size: 1.05rem; }
.consulting-pillars p { margin: 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }
.home-proof-band { padding-block: 42px; background: var(--navy-deep); color: var(--white); }
.home-proof-band::after { opacity: .04; }
.proof-band-label { margin: 0 0 28px; color: #8fa7b8; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.home-proof-band .stat-number { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.25rem); }
.home-proof-band .stat-label { max-width: 190px; margin-inline: auto; color: #aebdca; font-size: .78rem; line-height: 1.5; }

/* Livro de soluções */
.home-solutions { background: var(--paper); }
.solutions-ledger { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.solution-line {
  min-height: 170px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background .2s ease, padding .2s ease;
}
.solution-line:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0; }
.solution-line:hover { background: var(--white); padding-inline: 38px; }
.solution-line:nth-child(odd):hover { padding-left: 24px; }
.solution-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--teal-tint); color: var(--teal); }
.solution-icon i { font-size: 1.65rem; }
.solution-copy { display: flex; flex-direction: column; }
.solution-copy small { margin-bottom: 5px; color: var(--teal); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-copy strong { font-family: var(--font-display); font-size: 1.12rem; }
.solution-copy em { margin-top: 6px; color: var(--ink-soft); font-size: .82rem; font-style: normal; line-height: 1.55; }
.solution-line > i { color: var(--lime-press); font-size: 1.35rem; }
.solution-line-highlight { background: var(--lime-tint); }
.solution-line-highlight .solution-icon { background: var(--lime); color: var(--ink); }

/* Processo */
.process-layout { display: grid; grid-template-columns: minmax(330px, .78fr) minmax(520px, 1.22fr); align-items: start; gap: clamp(56px, 9vw, 150px); }
.process-intro { position: sticky; top: 160px; }
.process-intro .lead { margin-bottom: 28px; }
.process-steps { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 62px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-step > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--teal); font-family: var(--font-display); font-size: .82rem; font-weight: 800; }
.process-step:first-child > span { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.process-step h3 { margin: 0 0 8px; font-size: 1.16rem; }
.process-step p { max-width: 590px; margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* Reputação */
.reputation { overflow: hidden; background: var(--paper); }
.google-bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px clamp(20px, 2.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px -38px var(--shadow);
}
.google-bar-mark { width: 30px; height: 30px; flex: 0 0 auto; }
.google-bar-mark svg { display: block; width: 100%; height: 100%; }
.google-bar-score { color: var(--ink); font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; line-height: 1; }
.google-bar-stars { display: inline-flex; gap: 2px; color: var(--lime-press); }
.google-bar-stars i { display: none; }
.google-bar-stars::before { content: "★★★★★"; font-size: .9rem; letter-spacing: 2px; }
.google-bar-txt { display: flex; min-width: 230px; flex: 1 1 340px; flex-direction: column; gap: 3px; }
.google-bar-txt strong { color: var(--ink); font-size: .82rem; }
.google-bar-txt small { color: var(--ink-soft); font-size: .7rem; line-height: 1.45; }
.google-bar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}
.voices-carousel { position: relative; margin-top: 24px; }
.voices-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  margin: 0 -4px;
  padding: 4px 4px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--lime-press) transparent;
  scrollbar-width: thin;
}
.voice-card {
  display: flex;
  flex: 0 0 clamp(280px, 32%, 396px);
  flex-direction: column;
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  background: var(--white);
  box-shadow: 0 18px 40px -30px var(--shadow);
  scroll-snap-align: start;
}
.voice-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.voice-stars { display: inline-flex; gap: 2px; color: var(--lime-press); }
.voice-stars i { display: none; }
.voice-stars::before { content: "★★★★★"; font-size: .84rem; letter-spacing: 2px; }
.voice-source { color: var(--teal); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.voice-card blockquote { margin: 0 0 18px; color: var(--ink); font-size: .92rem; line-height: 1.62; }
.voice-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.voice-avatar { width: 40px; height: 40px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--teal-tint); color: var(--teal); font-size: .76rem; font-weight: 800; }
.voice-avatar img { display: block; width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.voice-who a { color: inherit; text-decoration: none; }
.voice-who a:hover { text-decoration: underline; text-underline-offset: 3px; }
.voice-who a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.voice-who { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.voice-who strong { color: var(--ink); font-size: .78rem; }
.voice-who small { overflow: hidden; color: var(--ink-soft); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.voices-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 8px; }
.voices-hint { margin: 0 auto 0 0; color: var(--ink-soft); font-size: .7rem; }
.voices-nav button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.voices-nav button:hover { border-color: var(--lime); background: var(--lime); }
.voices-nav button:disabled { cursor: default; opacity: .35; }

/* Reconhecimentos autorizados */
.home-awards { overflow: hidden; background: var(--white); }
.home-awards .awards-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .68fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: clamp(36px, 4vw, 50px);
}
.home-awards .awards-heading .section-title { max-width: 700px; margin: 0; }
.home-awards .awards-head-aside { display: grid; gap: 20px; padding-left: 32px; border-left: 1px solid var(--line); }
.home-awards .awards-head-aside .lead { max-width: 470px; margin: 0; font-size: .96rem; line-height: 1.65; }
.awards-context { display: flex; align-items: center; gap: 12px; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .76rem; font-weight: 700; line-height: 1.5; }
.awards-context i { flex: 0 0 auto; color: var(--lime-press); font-size: 1.55rem; }
.awards-carousel { position: relative; }
.awards-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.awards-track::-webkit-scrollbar { display: none; }
.award-slide {
  position: relative;
  isolation: isolate;
  height: 440px;
  min-width: 278px;
  flex: 0 0 clamp(278px, 21vw, 300px);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20,50,74,.12);
  border-radius: 26px 26px 26px 68px;
  background: var(--navy-deep);
  box-shadow: 0 28px 60px -42px var(--shadow);
  scroll-snap-align: start;
}
.award-slide-wide { flex-basis: clamp(360px, 28vw, 390px); }
.award-slide::after { content: ""; position: absolute; z-index: 1; inset: 34% 0 0; background: linear-gradient(180deg, transparent, rgba(6,25,39,.34) 26%, rgba(6,25,39,.96) 100%); pointer-events: none; }
.award-slide img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 34%; transition: transform .45s ease; }
.award-slide:hover img { transform: scale(1.025); }
.award-slide figcaption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 76px 22px 22px; color: var(--white); font-size: .96rem; font-weight: 750; line-height: 1.3; }
.award-slide figcaption small { display: block; max-width: 34ch; margin-top: 5px; color: #c9d5df; font-size: .76rem; font-weight: 500; line-height: 1.45; }
.award-year { position: absolute; z-index: 3; top: 18px; left: 18px; padding: 7px 14px; border-radius: 999px; background: var(--lime); color: var(--ink); font-family: var(--font-display); font-size: .76rem; font-weight: 800; letter-spacing: .03em; }
.awards-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 14px; }
.awards-hint { margin: 0 auto 0 0; color: var(--ink-soft); font-size: .72rem; }
.awards-nav button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.awards-nav button:hover { border-color: var(--lime); background: var(--lime); }
.awards-nav button:disabled { cursor: default; opacity: .35; }
.home-reputation { background: #e7f1ef; }
.reputation-layout { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr); align-items: center; gap: clamp(56px, 8vw, 132px); }
.reputation-summary .lead { font-size: 1rem; }
.reputation-summary .review-head { margin: 32px 0 22px; }
.reputation-summary .stars { color: #e5a700; font-size: 1.05rem; }
.reputation-summary .review-meta { margin: 4px 0 0; }
.reputation-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-feature { grid-column: 1 / -1; margin: 0; padding: clamp(34px, 4vw, 52px); border-radius: 30px 30px 30px 78px; background: var(--navy-deep); color: var(--white); }
.quote-feature > i { color: var(--lime); font-size: 2.2rem; }
.quote-feature > p { margin: 20px 0 28px; color: var(--white); font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 700; line-height: 1.35; }
.quote-feature footer { display: flex; flex-direction: column; gap: 3px; }
.quote-feature footer strong { color: var(--lime); font-size: .82rem; }
.quote-feature footer span { color: #aebdca; font-size: .76rem; }
.quote-support { padding: 25px; border: 1px solid rgba(20,50,74,.1); border-radius: 22px; background: rgba(255,255,255,.65); }
.quote-support p { margin: 0 0 16px; color: var(--ink); font-size: .9rem; font-weight: 600; }
.quote-support span { color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* Conteúdo editorial e FAQ */
.insight-card { display: grid; grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr); overflow: hidden; border-radius: 36px 36px 36px 96px; background: var(--white); box-shadow: 0 38px 84px -58px var(--shadow); }
.insight-media { position: relative; min-height: 610px; }
.insight-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.insight-media span { position: absolute; left: 28px; bottom: 28px; padding: 10px 14px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insight-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 86px); }
.insight-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.insight-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 14px 0 20px; }
.insight-points span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: .72rem; font-weight: 700; }
.insight-points i { color: var(--teal); }
.insight-emphasis { padding-left: 18px; border-left: 3px solid var(--lime); }
.insight-emphasis strong { display: block; color: var(--ink); }
.insight-copy .hero-ctas { align-items: center; }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); align-items: start; gap: clamp(56px, 9vw, 150px); }
.faq-intro { position: sticky; top: 160px; }
.faq-intro .lead { font-size: 1rem; }
.faq-contact { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.faq-contact > i { color: var(--teal); font-size: 2rem; }
.faq-contact p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.faq-contact a { color: var(--ink); font-weight: 800; }
.home-faq .faq { max-width: none; margin: 0; }
.home-faq .faq details { margin: 0; border-width: 0 0 1px; border-radius: 0; background: transparent; }
.home-faq .faq summary { padding: 24px 0; font-size: 1rem; }
.home-faq .faq details > div { padding: 0 56px 24px 0; }

.cta-kicker { margin: 0 0 10px !important; color: var(--lime) !important; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-actions > span { display: inline-flex; align-items: center; gap: 7px; color: #91a4b3; font-size: .72rem; }

@media (max-width: 1100px) {
  .portfolio-layout,
  .consulting-grid,
  .process-layout,
  .reputation-layout,
  .insight-card,
  .faq-layout { grid-template-columns: 1fr; }
  .portfolio-feature { min-height: 560px; }
  .portfolio-stack { grid-template-columns: 1fr 1fr; }
  .portfolio-row { grid-template-columns: 1fr; }
  .portfolio-row img { height: 220px; }
  .consulting-copy { max-width: 760px; }
  .consulting-note { left: 24px; }
  .process-intro,
  .faq-intro { position: static; max-width: 760px; }
  .insight-media { min-height: 480px; }
  .home-awards .awards-head { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .home-awards .awards-head-aside { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 760px) {
  .home-section-intro { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-feature { min-height: 530px; border-radius: 28px 28px 28px 70px; }
  .portfolio-stack { grid-template-columns: 1fr; }
  .portfolio-row { min-height: auto; }
  .consulting-visual { min-height: 420px; }
  .consulting-visual > img { height: 420px; border-radius: 30px 30px 30px 72px; }
  .consulting-note { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .consulting-pillars { grid-template-columns: 1fr; }
  .consulting-pillars article,
  .consulting-pillars article:first-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .consulting-pillars article:last-child { border-bottom: 0; }
  .solutions-ledger { grid-template-columns: 1fr; }
  .solution-line,
  .solution-line:nth-child(odd) { min-height: 150px; padding: 24px 0; border-right: 0; }
  .solution-line:hover,
  .solution-line:nth-child(odd):hover { padding-inline: 16px; }
  .solution-line-highlight { padding-inline: 16px; }
  .reputation-quotes { grid-template-columns: 1fr; }
  .google-bar-link { width: 100%; }
  .voice-card { flex-basis: min(86vw, 340px); padding: 22px; }
  .voices-hint { max-width: 190px; }
  .award-slide,
  .award-slide-wide { height: 390px; min-width: 278px; flex-basis: 278px; }
  .award-slide figcaption { padding: 70px 18px 20px; font-size: .88rem; }
  .awards-hint { max-width: 190px; }
  .quote-feature { border-radius: 26px 26px 26px 60px; }
  .insight-card { border-radius: 28px 28px 28px 68px; }
  .insight-media { min-height: 360px; }
  .insight-copy { padding: 34px 24px 42px; }
  .insight-copy .hero-ctas { align-items: flex-start; flex-direction: column; }
  .home-proof-band .stats { gap: 30px 14px; }
  .cta-actions { width: 100%; align-items: flex-start; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .portfolio-feature h3 { font-size: 2rem; }
  .portfolio-feature-copy { left: 22px; right: 22px; }
  .portfolio-row img { height: 190px; }
  .solution-line { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 14px; }
  .solution-icon { width: 46px; height: 46px; border-radius: 15px; }
  .solution-copy em { display: none; }
  .process-step { grid-template-columns: 48px 1fr; gap: 18px; }
  .process-step > span { width: 42px; height: 42px; }
}
