:root {
  --bg: #f5efe4;
  --paper: rgba(255, 251, 245, 0.88);
  --surface: #fffaf2;
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ink: #172135;
  --muted: #5f6778;
  --line: rgba(23, 33, 53, 0.1);
  --brand: #153d6f;
  --brand-strong: #0b2850;
  --accent: #d27c2c;
  --accent-soft: #f5dbc1;
  --ok: #26795c;
  --shadow: 0 22px 60px rgba(20, 36, 67, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
  --display-font: "Fraunces", Georgia, serif;
  --text-font: "Manrope", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--text-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 124, 44, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(21, 61, 111, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f0e5 0%, #f3eadc 34%, #efe6d9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  pointer-events: none;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 24px auto 0;
  padding: 14px 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(23, 33, 53, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 14px 36px rgba(27, 39, 65, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--display-font);
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, #1f5ca6 100%);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.topbar-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.topbar-links .button-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 700;
}

.layout {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 28px auto 56px;
}

.hero-grid,
.dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.stack-layout {
  display: grid;
  gap: 28px;
}

.content-grid,
.offer-story-grid,
.hub-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid,
.spotlight-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.panel {
  background: var(--paper);
  border: 1px solid rgba(23, 33, 53, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise-in 0.7s ease both;
}

.hero-card,
.content-card,
.form-card,
.thanks-card,
.legal-card,
.offer-card,
.event-card,
.strip-card {
  padding: 30px;
}

.hero-card {
  overflow: hidden;
  position: relative;
}

.hero-card::after,
.offer-card::after,
.event-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 124, 44, 0.2), transparent 68%);
  pointer-events: none;
}

.offer-card,
.event-card {
  position: sticky;
  top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(210, 124, 44, 0.12);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title,
.section-title,
.legal-title,
.thanks-title {
  margin: 18px 0 14px;
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-title,
.thanks-title {
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  margin: 0 0 12px;
}

.hero-subtitle,
.lead,
.legal-intro,
.thanks-subtitle,
.cta-copy,
.embed-copy {
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--muted);
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}

.stats-grid,
.offer-stats,
.event-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 53, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.list-clean,
.meta-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.list-clean li,
.meta-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1.6;
}

.list-bullet {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #f0b17a 100%);
  flex: 0 0 auto;
}

.profile-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(21, 61, 111, 0.08), rgba(210, 124, 44, 0.12));
  border: 1px solid rgba(21, 61, 111, 0.08);
}

.profile-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.profile-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.profile-meta,
.inline-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preview-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(210, 124, 44, 0.14);
  border: 1px solid rgba(210, 124, 44, 0.24);
  color: #7b430e;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.consent label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 53, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: rgba(21, 61, 111, 0.45);
  transform: translateY(-1px);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(21, 61, 111, 0.05);
}

.consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.helper-text,
.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 22px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--brand) 0%, #1c5ba5 100%);
  color: white;
  box-shadow: 0 16px 34px rgba(17, 62, 114, 0.24);
}

.button-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(21, 61, 111, 0.16);
}

.button:hover,
.button-secondary:hover,
.button-link:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.hero-link {
  min-height: 72px;
}

.legal-links,
.inline-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-shell,
.legal-shell {
  width: min(calc(100% - 32px), 860px);
  margin: 32px auto 56px;
}

.thanks-actions,
.cta-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.thanks-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(38, 121, 92, 0.08);
  border: 1px solid rgba(38, 121, 92, 0.12);
  color: #1f6049;
  margin: 18px 0 0;
}

.legal-card {
  margin-top: 22px;
}

.legal-section + .legal-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.legal-section p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 53, 0.08);
}

.feature-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.feature-card-link {
  display: grid;
  gap: 8px;
}

.strip-card {
  background: linear-gradient(135deg, rgba(21, 61, 111, 0.9), rgba(11, 40, 80, 0.94));
  color: white;
}

.strip-card .lead,
.strip-card .microcopy {
  color: rgba(255, 255, 255, 0.82);
}

.strip-card .inline-link {
  color: white;
}

.price-pill {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(21, 61, 111, 0.08);
  border: 1px solid rgba(21, 61, 111, 0.12);
  font-weight: 700;
  line-height: 1.6;
}

.embed-shell {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 33, 53, 0.08);
}

.embed-placeholder {
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(21, 61, 111, 0.25);
  background:
    radial-gradient(circle at top left, rgba(210, 124, 44, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(21, 61, 111, 0.08), rgba(255, 255, 255, 0.82));
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.embed-placeholder strong {
  font-size: 1.15rem;
}

.embed-placeholder span {
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 53, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.hub-note-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto 120px;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  background: rgba(20, 36, 67, 0.9);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(10, 19, 36, 0.24);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.site-footer__brand p,
.site-footer__brand a {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer__links a {
  color: white;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(100% - 24px, 520px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(23, 33, 53, 0.1);
  box-shadow: 0 22px 60px rgba(20, 36, 67, 0.2);
  backdrop-filter: blur(14px);
  animation: rise-in 0.5s ease both;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 8px;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.cookie-link {
  font-size: 0.9rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .dual-grid,
  .content-grid,
  .offer-story-grid,
  .hub-grid,
  .event-grid,
  .feature-grid,
  .spotlight-grid,
  .support-grid,
  .hero-link-grid,
  .stats-grid,
  .offer-stats,
  .event-stats {
    grid-template-columns: 1fr;
  }

  .form-card,
  .offer-card,
  .event-card {
    position: static;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    border-radius: 28px;
    padding: 16px;
    align-items: flex-start;
  }

  .topbar,
  .topbar-links {
    flex-direction: column;
  }

  .topbar-links,
  .topbar-links .button-link {
    width: 100%;
  }

  .hero-card,
  .content-card,
  .form-card,
  .thanks-card,
  .legal-card,
  .offer-card,
  .event-card,
  .strip-card {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 13vw, 3.2rem);
  }

  .button,
  .button-secondary,
  .button-link {
    width: 100%;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOME INSTITUCIONAL ( /bio/ )
   Prefixo: home-*  — não afeta outras páginas.
   Paleta: navy #0b1b3a + dourado #d4a84c + coral #ff6b35
   ============================================================ */

body.home-institutional {
  --hi-navy-deep: #081428;
  --hi-navy: #0b1b3a;
  --hi-navy-soft: #122447;
  --hi-navy-line: rgba(212, 168, 76, 0.18);
  --hi-gold: #d4a84c;
  --hi-gold-soft: #e6c47a;
  --hi-coral: #ff6b35;
  --hi-coral-soft: #ff8a5e;
  --hi-ivory: #f8f6f2;
  --hi-mist: #c8d1e3;
  --hi-fog: #8894b2;

  margin: 0;
  background: var(--hi-navy-deep) !important;
  color: var(--hi-ivory);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

/* Remove a grade decorativa e os brilhos claros do template padrão */
body.home-institutional::before {
  display: none !important;
}

body.home-institutional .site-shell--home {
  max-width: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--hi-navy) 0%, var(--hi-navy-deep) 100%);
  position: relative;
  overflow-x: hidden;
}

body.home-institutional .site-shell--home::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(closest-side, rgba(212, 168, 76, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body.home-institutional .home-main {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ---------- TOPBAR ---------- */
body.home-institutional .topbar--home {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

body.home-institutional .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--hi-ivory);
}

.brand-mark--gold {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hi-gold) 0%, var(--hi-gold-soft) 100%);
  color: var(--hi-navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(212, 168, 76, 0.25);
}

body.home-institutional .brand-copy strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--hi-ivory);
  letter-spacing: 0.2px;
}

body.home-institutional .brand-copy span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hi-gold);
  margin-top: 2px;
}

.topbar-links--home {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-links--home a {
  color: var(--hi-mist);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.topbar-links--home a:hover {
  color: var(--hi-gold);
}

.topbar-links--home a.topbar-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(212, 168, 76, 0.12);
  border: 1px solid var(--hi-navy-line);
  color: var(--hi-gold-soft);
}

.topbar-links--home a.topbar-cta:hover {
  background: rgba(212, 168, 76, 0.2);
  color: var(--hi-ivory);
}

/* ---------- HERO ---------- */
.home-hero {
  position: relative;
  padding: 72px 0 64px;
  text-align: left;
}

.home-hero__bg {
  position: absolute;
  inset: -40px 0 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(255, 107, 53, 0.12), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(212, 168, 76, 0.14), transparent 60%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 168, 76, 0.10);
  border: 1px solid var(--hi-navy-line);
  color: var(--hi-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.home-eyebrow--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--hi-ivory);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-hero__title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hi-ivory);
  margin: 0 0 24px;
}

.home-hero__title em,
.home-hero__title strong {
  color: var(--hi-gold);
  font-style: normal;
  font-weight: 700;
}

.home-hero__subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--hi-mist);
  max-width: 720px;
  margin: 0 0 36px;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

body.home-institutional .button.hero-link,
body.home-institutional .home-final-cta__primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hi-coral) 0%, var(--hi-coral-soft) 100%);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.home-institutional .button.hero-link:hover,
body.home-institutional .home-final-cta__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 107, 53, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.home-institutional .button-secondary.hero-link,
body.home-institutional .home-final-cta__secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 28px;
  border-radius: 14px;
  background: transparent;
  color: var(--hi-gold);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--hi-gold);
  transition: all 0.2s ease;
}

body.home-institutional .button-secondary.hero-link:hover,
body.home-institutional .home-final-cta__secondary:hover {
  background: rgba(212, 168, 76, 0.1);
  color: var(--hi-ivory);
}

.hero-link__hint {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-top: 4px;
  text-transform: uppercase;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 720px;
}

.home-stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--hi-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.home-stat span {
  display: block;
  font-size: 12px;
  color: var(--hi-fog);
  letter-spacing: 0.04em;
}

/* ---------- SECTIONS COMMON ---------- */
.home-section {
  padding: 72px 0;
}

.home-section + .home-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.home-section__head {
  max-width: 780px;
  margin: 0 0 40px;
}

.home-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-section__title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  color: var(--hi-ivory);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.home-section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--hi-mist);
  margin: 0;
}

/* ---------- PAIN / DORES ---------- */
.home-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.home-pain-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.home-pain-card:hover {
  border-color: var(--hi-navy-line);
  background: rgba(212, 168, 76, 0.06);
  transform: translateY(-3px);
}

.home-pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--hi-coral);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.home-pain-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--hi-ivory);
  margin-bottom: 10px;
  line-height: 1.3;
}

.home-pain-card p {
  font-size: 14.5px;
  color: var(--hi-mist);
  margin: 0;
  line-height: 1.6;
}

/* ---------- AUTORIDADE ---------- */
.home-section--authority {
  background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 76, 0.04) 100%);
}

.home-authority {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.9) 0%, rgba(18, 36, 71, 0.8) 100%);
  border: 1px solid var(--hi-navy-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.home-authority__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hi-mist);
  margin: 0 0 28px;
  white-space: pre-line;
}

.home-authority__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-authority__sig-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hi-gold) 0%, var(--hi-gold-soft) 100%);
  color: var(--hi-navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
}

.home-authority__sig strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--hi-ivory);
  font-size: 17px;
}

.home-authority__sig span {
  display: block;
  font-size: 12.5px;
  color: var(--hi-fog);
  line-height: 1.5;
  margin-top: 2px;
}

.home-authority__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.home-auth-stat {
  padding: 22px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--hi-navy-line);
  text-align: center;
}

.home-auth-stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--hi-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.home-auth-stat span {
  display: block;
  font-size: 12px;
  color: var(--hi-mist);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ---------- MÉTODO GUERRA E PAZ ---------- */
.home-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.home-method-card {
  padding: 32px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.25s ease;
}

.home-method-card:hover {
  border-color: var(--hi-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-method-card__number {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--hi-gold);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.9;
}

.home-method-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--hi-ivory);
  margin-bottom: 12px;
}

.home-method-card p {
  font-size: 14.5px;
  color: var(--hi-mist);
  margin: 0;
  line-height: 1.65;
}

/* ---------- HUB (Por onde começar) ---------- */
.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (min-width: 1024px) {
  .home-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-hub-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 36, 71, 0.7) 0%, rgba(11, 27, 58, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
}

.home-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--hi-gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.home-hub-card--primary {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(11, 27, 58, 0.95) 100%);
  border-color: rgba(255, 107, 53, 0.4);
}

.home-hub-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.home-hub-card__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hi-fog);
}

.home-hub-card__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212, 168, 76, 0.12);
  color: var(--hi-gold);
  border: 1px solid var(--hi-navy-line);
}

.home-hub-card--primary .home-hub-card__badge {
  background: rgba(255, 107, 53, 0.18);
  color: var(--hi-coral-soft);
  border-color: rgba(255, 107, 53, 0.35);
}

.home-hub-card__title {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--hi-ivory);
  margin: 0;
}

.home-hub-card__text {
  font-size: 14.5px;
  color: var(--hi-mist);
  margin: 0;
  line-height: 1.65;
  flex-grow: 1;
}

.home-hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--hi-gold);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.home-hub-card__cta:hover {
  color: var(--hi-ivory);
  gap: 12px;
}

.home-hub-card--primary .home-hub-card__cta {
  color: var(--hi-coral-soft);
}

.home-hub-card--primary .home-hub-card__cta:hover {
  color: #ffffff;
}

/* ---------- POR QUE FUNCIONA ---------- */
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.home-why-card {
  padding: 36px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  position: relative;
}

.home-why-card__number {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--hi-gold);
  margin-bottom: 20px;
}

.home-why-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--hi-ivory);
  margin-bottom: 12px;
}

.home-why-card p {
  font-size: 14.5px;
  color: var(--hi-mist);
  margin: 0;
  line-height: 1.65;
}

/* ---------- CTA FINAL ---------- */
.home-section--final-cta {
  padding: 60px 0 80px;
}

.home-final-cta {
  position: relative;
  padding: 56px 40px;
  border-radius: 28px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 107, 53, 0.18), transparent 60%),
    linear-gradient(135deg, var(--hi-navy-soft) 0%, var(--hi-navy) 100%);
  border: 1px solid var(--hi-navy-line);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 120%, rgba(212, 168, 76, 0.18), transparent 40%);
  pointer-events: none;
}

.home-final-cta__title {
  position: relative;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  color: var(--hi-ivory);
  margin: 20px 0 12px;
}

.home-final-cta__text {
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: var(--hi-mist);
  max-width: 600px;
  margin: 0 auto 32px;
}

.home-final-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

body.home-institutional .home-main :is(
  .home-eyebrow,
  .home-hero__title,
  .home-hero__subtitle,
  .hero-link__hint,
  .home-stat span,
  .home-section__title,
  .home-section__lead,
  .home-pain-card strong,
  .home-pain-card p,
  .home-authority__lead,
  .home-authority__sig span,
  .home-auth-stat span,
  .home-method-card strong,
  .home-method-card p,
  .home-hub-card__step,
  .home-hub-card__badge,
  .home-hub-card__title,
  .home-hub-card__text,
  .home-hub-card__cta,
  .home-why-card strong,
  .home-why-card p,
  .home-final-cta__title,
  .home-final-cta__text
) {
  text-align: justify;
  text-justify: inter-word;
}

/* ---------- FOOTER (sobrescreve o footer automático no escuro) ---------- */
body.home-institutional .site-footer {
  background: var(--hi-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
  color: var(--hi-mist);
}

body.home-institutional .site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}

body.home-institutional .site-footer strong,
body.home-institutional .site-footer a {
  color: var(--hi-ivory);
}

body.home-institutional .site-footer p {
  color: var(--hi-fog);
}

body.home-institutional .site-footer__links a {
  color: var(--hi-mist);
}

body.home-institutional .site-footer__links a:hover {
  color: var(--hi-gold);
}

body.home-institutional .site-footer .brand-mark {
  background: linear-gradient(135deg, var(--hi-gold) 0%, var(--hi-gold-soft) 100%);
  color: var(--hi-navy-deep);
}

/* ---------- COOKIE BANNER — ajuste visual no tema dark ---------- */
body.home-institutional .cookie-banner {
  background: rgba(8, 20, 40, 0.98);
  border: 1px solid var(--hi-navy-line);
  color: var(--hi-mist);
}

body.home-institutional .cookie-banner strong {
  color: var(--hi-ivory);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .home-authority {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }

  .home-authority__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero {
    padding: 48px 0 40px;
  }

  .home-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-section {
    padding: 56px 0;
  }

  .home-final-cta {
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  body.home-institutional .home-main {
    padding: 0 18px 60px;
  }

  .topbar--home {
    padding: 18px;
  }

  .topbar-links--home {
    gap: 16px;
    font-size: 13px;
  }

  .home-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  body.home-institutional .button.hero-link,
  body.home-institutional .button-secondary.hero-link {
    width: 100%;
  }
}

/* ============================================================
   HOME INSTITUCIONAL V2 ( /bio/ )
   Ajustes finais para aproximar o layout do modelo-design.
   ============================================================ */

body.home-institutional {
  --home-bg: #070c17;
  --home-surface: rgba(15, 25, 46, 0.82);
  --home-surface-soft: rgba(255, 255, 255, 0.035);
  --home-line: rgba(255, 255, 255, 0.09);
  --home-line-strong: rgba(255, 203, 69, 0.22);
  --home-gold: #ffcb45;
  --home-gold-strong: #ff9f2f;
  --home-ink: #f3f7ff;
  --home-muted: #97a4c0;
  --home-muted-soft: #6f7b95;
  --home-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --home-gradient-gold: linear-gradient(135deg, #ffcb45 0%, #ff9f2f 100%);
  --home-gradient-card: linear-gradient(160deg, rgba(16, 26, 49, 0.96) 0%, rgba(9, 15, 29, 0.96) 100%);

  background:
    radial-gradient(circle at 12% 16%, rgba(255, 203, 69, 0.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(44, 111, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1120 0%, var(--home-bg) 55%, #050910 100%) !important;
  color: var(--home-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.home-institutional .site-shell--home {
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
}

body.home-institutional .site-shell--home::before {
  inset: 0;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  transform: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 203, 69, 0.12), transparent 20%),
    radial-gradient(circle at 14% 32%, rgba(44, 111, 255, 0.1), transparent 22%);
}

body.home-institutional .site-shell--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 78%);
  pointer-events: none;
  z-index: 0;
}

body.home-institutional .home-main {
  max-width: 1200px;
  padding: 0 24px 96px;
}

body.home-institutional .topbar--home {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1200px;
  padding: 20px 24px;
  background: rgba(7, 12, 23, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

body.home-institutional .brand {
  color: var(--home-ink);
}

body.home-institutional .brand-mark--gold {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--home-gradient-gold);
  color: #0b1020;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(255, 186, 46, 0.22);
}

body.home-institutional .brand-copy strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--home-ink);
  letter-spacing: 0;
}

body.home-institutional .brand-copy span {
  color: var(--home-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.topbar-links--home {
  gap: 18px;
}

.topbar-links--home a {
  color: var(--home-muted);
}

.topbar-links--home a:hover {
  color: var(--home-ink);
}

.topbar-links--home a.topbar-cta {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line);
  color: var(--home-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.topbar-links--home a.topbar-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-hero {
  padding: 76px 0 56px;
}

.home-hero__bg {
  inset: -80px -40px 0;
  background:
    radial-gradient(520px 280px at 10% 18%, rgba(255, 203, 69, 0.12), transparent 70%),
    radial-gradient(420px 320px at 85% 12%, rgba(44, 111, 255, 0.12), transparent 70%),
    radial-gradient(640px 460px at 80% 90%, rgba(255, 159, 47, 0.08), transparent 70%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.home-hero__content {
  max-width: 760px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line);
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.home-chip--status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--home-gold);
  box-shadow: 0 0 0 6px rgba(255, 203, 69, 0.12);
}

.home-chip--light {
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-hero__title {
  margin: 0 0 22px;
  max-width: 11ch;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--home-ink);
}

.home-hero__subtitle {
  max-width: 58ch;
  margin: 0 0 34px;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.75;
  color: var(--home-muted);
}

.home-hero__ctas {
  gap: 16px;
  margin-bottom: 26px;
}

body.home-institutional .button.hero-link,
body.home-institutional .home-final-cta__primary {
  align-items: flex-start;
  gap: 4px;
  padding: 18px 24px;
  border-radius: 18px;
  background: var(--home-gradient-gold);
  color: #0a1120;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  border: 1px solid rgba(255, 203, 69, 0.34);
  box-shadow: 0 18px 44px rgba(255, 186, 46, 0.2);
}

body.home-institutional .button.hero-link:hover,
body.home-institutional .home-final-cta__primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(255, 186, 46, 0.28);
}

body.home-institutional .button-secondary.hero-link,
body.home-institutional .home-final-cta__secondary {
  align-items: flex-start;
  gap: 4px;
  padding: 18px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--home-ink);
  border: 1px solid var(--home-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-institutional .button-secondary.hero-link:hover,
body.home-institutional .home-final-cta__secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-link__hint {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.home-hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero__microproof span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--home-muted);
  font-size: 13px;
}

.home-hero__panel {
  display: flex;
}

.home-panel {
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: var(--home-gradient-card);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.home-panel__title {
  margin: 2px 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--home-ink);
}

.home-panel__text {
  margin: 0 0 26px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
}

.home-hero__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  padding-top: 0;
  border-top: none;
}

.home-stat {
  min-height: 136px;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-stat strong {
  margin-bottom: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--home-gold);
  text-shadow: 0 0 32px rgba(255, 203, 69, 0.12);
}

.home-stat span {
  color: var(--home-muted);
  line-height: 1.5;
}

.home-section {
  padding: 84px 0;
}

.home-section__head {
  max-width: 760px;
  margin: 0 0 42px;
}

.home-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--home-ink);
}

.home-section__lead {
  line-height: 1.8;
  color: var(--home-muted);
}

.home-pain-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.home-pain-card:hover {
  border-color: var(--home-line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.home-pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 203, 69, 0.08);
  color: var(--home-gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.home-pain-card strong {
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--home-ink);
}

.home-pain-card p {
  color: var(--home-muted);
}

.home-section--authority {
  background: none;
}

.home-authority {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: start;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.home-authority__copy {
  padding-right: 10px;
}

.home-authority__lead {
  display: grid;
  gap: 14px;
  margin: 0;
  white-space: normal;
}

.home-authority__lead p {
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.8;
}

.home-authority__sig {
  margin-top: 30px;
  border-top: 1px solid var(--home-line);
}

.home-authority__sig-mark {
  width: 58px;
  height: 58px;
  background: var(--home-gradient-gold);
  color: #0b1020;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.home-authority__sig strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--home-ink);
}

.home-authority__sig span {
  color: var(--home-muted-soft);
  font-size: 12px;
  margin-top: 3px;
}

.home-authority__panel {
  display: flex;
}

.home-authority__card {
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: var(--home-gradient-card);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
  position: sticky;
  top: 92px;
}

.home-authority__card-header {
  margin-bottom: 22px;
}

.home-authority__card-header p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-authority__stats {
  gap: 14px;
}

.home-auth-stat {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.home-auth-stat strong {
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--home-gold);
}

.home-auth-stat span {
  color: var(--home-muted);
  line-height: 1.5;
}

.home-method-card {
  padding: 30px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.home-method-card:hover {
  border-color: var(--home-line-strong);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-method-card__number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255, 203, 69, 0.42);
}

.home-method-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--home-ink);
  line-height: 1.35;
}

.home-method-card p {
  color: var(--home-muted);
  line-height: 1.7;
}

.home-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hub-card {
  padding: 30px 26px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(16, 26, 49, 0.9) 0%, rgba(9, 15, 29, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 100%;
}

.home-hub-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.home-hub-card--primary {
  background: linear-gradient(160deg, rgba(22, 33, 58, 0.96) 0%, rgba(10, 16, 30, 0.96) 100%);
  border-color: rgba(255, 203, 69, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 203, 69, 0.08), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-hub-card__top {
  align-items: flex-start;
  gap: 14px;
}

.home-hub-card__step {
  color: var(--home-muted-soft);
}

.home-hub-card__badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-gold);
}

.home-hub-card--primary .home-hub-card__badge {
  background: rgba(255, 203, 69, 0.09);
  border-color: rgba(255, 203, 69, 0.18);
  color: var(--home-gold);
}

.home-hub-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  color: var(--home-ink);
}

.home-hub-card__text {
  color: var(--home-muted);
  line-height: 1.72;
}

.home-hub-card__cta {
  margin-top: auto;
  font-weight: 700;
  color: var(--home-gold);
}

.home-hub-card__cta:hover {
  color: var(--home-ink);
}

.home-why-card {
  padding: 34px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.home-why-card__number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 203, 69, 0.24);
  -webkit-text-stroke: 0;
}

.home-why-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  color: var(--home-ink);
}

.home-why-card p {
  color: var(--home-muted);
  line-height: 1.72;
}

.home-section--final-cta {
  padding: 66px 0 84px;
}

.home-final-cta {
  padding: 58px 40px;
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(16, 26, 49, 0.98) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.home-final-cta::before {
  inset: -20% auto auto -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 203, 69, 0.14), transparent 70%);
}

.home-final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 111, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.home-final-cta__title {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  margin: 0 auto 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--home-ink);
}

.home-final-cta__text {
  position: relative;
  z-index: 1;
  max-width: 62ch;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: var(--home-muted);
}

.home-final-cta__actions {
  position: relative;
  z-index: 1;
  gap: 16px;
}

body.home-institutional .home-main :is(
  .home-chip,
  .home-hero__title,
  .home-hero__subtitle,
  .hero-link__hint,
  .home-stat span,
  .home-section__title,
  .home-section__lead,
  .home-pain-card strong,
  .home-pain-card p,
  .home-authority__lead,
  .home-authority__lead p,
  .home-authority__sig span,
  .home-auth-stat span,
  .home-method-card strong,
  .home-method-card p,
  .home-hub-card__step,
  .home-hub-card__badge,
  .home-hub-card__title,
  .home-hub-card__text,
  .home-hub-card__cta,
  .home-why-card strong,
  .home-why-card p,
  .home-final-cta__title,
  .home-final-cta__text
) {
  text-align: left;
  text-justify: auto;
}

body.home-institutional .home-section__head--center :is(.home-chip, .home-section__title, .home-section__lead),
body.home-institutional .home-final-cta :is(.home-chip, .home-final-cta__title, .home-final-cta__text) {
  text-align: center;
}

body.home-institutional .site-footer {
  background: rgba(5, 9, 16, 0.94);
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
}

body.home-institutional .site-footer__inner {
  max-width: 1200px;
}

body.home-institutional .site-footer strong,
body.home-institutional .site-footer a {
  color: var(--home-ink);
}

body.home-institutional .site-footer p {
  color: var(--home-muted-soft);
}

body.home-institutional .site-footer__links a {
  color: var(--home-muted);
}

body.home-institutional .site-footer__links a:hover {
  color: var(--home-ink);
}

body.home-institutional .site-footer .brand-mark {
  background: var(--home-gradient-gold);
  color: #0b1020;
}

body.home-institutional .cookie-banner {
  background: rgba(7, 12, 23, 0.96);
  border: 1px solid var(--home-line);
  color: var(--home-muted);
}

body.home-institutional .cookie-banner strong {
  color: var(--home-ink);
}

@media (min-width: 1140px) {
  .home-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .home-hero__grid,
  .home-authority {
    grid-template-columns: 1fr;
  }

  .home-authority__copy {
    padding-right: 0;
  }

  .home-authority__card {
    position: static;
  }
}

@media (max-width: 780px) {
  body.home-institutional .home-main {
    padding: 0 20px 80px;
  }

  body.home-institutional .topbar--home {
    padding: 16px 20px;
  }

  .home-hero {
    padding-top: 56px;
  }

  .home-hero__title {
    max-width: none;
    font-size: clamp(34px, 10vw, 54px);
  }

  .home-panel,
  .home-authority__card,
  .home-final-cta {
    padding: 26px;
  }

  .home-authority__stats,
  .home-hero__stats,
  .home-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar-links--home {
    gap: 14px;
  }

  .home-hero__ctas,
  .home-final-cta__actions {
    flex-direction: column;
  }

  body.home-institutional .button.hero-link,
  body.home-institutional .button-secondary.hero-link,
  body.home-institutional .home-final-cta__primary,
  body.home-institutional .home-final-cta__secondary {
    width: 100%;
  }

  .home-section {
    padding: 68px 0;
  }

  .home-pain-card,
  .home-method-card,
  .home-hub-card,
  .home-why-card {
    padding: 24px;
  }
}

/* ============================================================
   LOGOS DA MARCA E INSTAGRAM
   ============================================================ */

.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
}

.topbar-links--home a.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar-cta__icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.site-footer__logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
}

@media (max-width: 780px) {
  .brand-logo,
  .site-footer__logo {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   HOME INSTITUCIONAL V3
   Correção de fidelidade visual ao modelo-design.
   ============================================================ */

body.home-institutional {
  --home-bg: #0b1020;
  --home-surface: rgba(17, 24, 43, 0.96);
  --home-surface-soft: rgba(255, 255, 255, 0.03);
  --home-line: rgba(255, 255, 255, 0.08);
  --home-line-strong: rgba(255, 203, 69, 0.28);
  --home-gold: #ffcb45;
  --home-gold-strong: #ff9f2f;
  --home-ink: #edf2ff;
  --home-muted: #8f99b3;
  --home-muted-soft: #6d7891;
  --home-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  --home-gradient-gold: linear-gradient(135deg, #ffcb45 0%, #ff9f2f 100%);
  --home-gradient-card: linear-gradient(145deg, rgba(17, 24, 43, 0.98) 0%, rgba(11, 16, 32, 0.98) 100%);

  background:
    radial-gradient(circle at 82% 12%, rgba(255, 203, 69, 0.08), transparent 22%),
    linear-gradient(180deg, #0b1020 0%, #080d18 100%) !important;
}

body.home-institutional .site-shell--home::before {
  background: radial-gradient(circle at 84% 16%, rgba(255, 203, 69, 0.08), transparent 18%);
}

body.home-institutional .site-shell--home::after {
  display: none;
}

.home-hero__bg {
  background: radial-gradient(520px 280px at 82% 16%, rgba(255, 203, 69, 0.09), transparent 70%);
}

.topbar-links--home a.topbar-cta {
  background: var(--home-gradient-gold);
  color: #0b1020;
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(255, 186, 46, 0.22);
}

.topbar-links--home a.topbar-cta:hover {
  background: var(--home-gradient-gold);
  color: #0b1020;
  filter: brightness(1.05);
}

.home-panel,
.home-authority__card,
.home-method-card,
.home-hub-card,
.home-pain-card,
.home-why-card,
.home-final-cta,
.home-stat {
  background: var(--home-gradient-card) !important;
  border-color: var(--home-line);
}

.home-hub-card--primary {
  background: linear-gradient(145deg, rgba(19, 26, 45, 0.98) 0%, rgba(11, 16, 32, 0.98) 100%) !important;
  border-color: var(--home-line-strong);
  box-shadow: 0 0 0 1px rgba(255, 203, 69, 0.07), 0 20px 48px rgba(0, 0, 0, 0.28);
}

body.home-institutional .button-secondary.hero-link,
body.home-institutional .home-final-cta__secondary {
  color: var(--home-gold);
  border-color: rgba(255, 203, 69, 0.32);
  background: transparent;
}

body.home-institutional .button-secondary.hero-link:hover,
body.home-institutional .home-final-cta__secondary:hover {
  background: rgba(255, 203, 69, 0.08);
  color: var(--home-gold);
  border-color: rgba(255, 203, 69, 0.4);
}

.home-highlight {
  background: var(--home-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-section__title,
.home-panel__title,
.home-final-cta__title,
.home-hub-card__title,
.home-method-card strong,
.home-pain-card strong,
.home-why-card strong,
.home-authority__sig strong {
  color: var(--home-ink);
}

.home-hero__subtitle,
.home-section__lead,
.home-panel__text,
.home-pain-card p,
.home-method-card p,
.home-hub-card__text,
.home-why-card p,
.home-final-cta__text,
.home-authority__lead p,
.home-auth-stat span,
.home-stat span,
.topbar-links--home a,
.home-hero__microproof span {
  color: var(--home-muted);
}

.home-why-card__number,
.home-method-card__number {
  color: rgba(255, 203, 69, 0.22);
}

.home-final-cta::after {
  display: none;
}
