:root {
  --navy: #001f3c;
  --navy-deep: #00182e;
  --navy-dark: #000f24;
  --blue-soft: #465d78;
  --blue-mid: #253f61;
  --gold: #e9c586;
  --gold-muted: #a88e66;
  --paper: #f0f0f0;
  --mist: #dce2ec;
  --ink: #0a0d11;
  --text: #f3e7d2;
  --gray: #44464a;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Heebo", Arial, sans-serif;
  --step-1: 16px;
  --step-2: 20px;
  --step-3: 24px;
  --step-4: 32px;
  --step-5: 40px;
  --step-6: 48px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--gray);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 80px 20px;
  color: var(--text);
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(0, 24, 46, 0.92);
  padding-top: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.brand {
  width: min(220px, 28vw);
  flex: 0 0 auto;
  position: relative;
  z-index: 26;
}
.brand img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(28%) saturate(628%) hue-rotate(347deg) brightness(105%) contrast(92%);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  font-size: var(--step-1);
  font-weight: 300;
}
.main-nav a {
  transition: color 180ms ease;
}
.main-nav a:hover {
  color: var(--gold);
}
.instagram-link {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 1280px;
  overflow: hidden;
  padding: 180px 80px 120px;
  background: var(--navy);
  color: var(--text);
}
.hero--compact {
  min-height: auto;
  padding: 160px 80px 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  background: url("assets/hero.webp") center top / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 15, 36, 0.62) 0%, rgba(0, 31, 60, 0.88) 48%, var(--navy) 72%),
    linear-gradient(90deg, rgba(0, 20, 39, 0.92), rgba(0, 31, 60, 0.42), rgba(0, 20, 39, 0.78));
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero h1,
.hero h2,
.intro h2,
.solution-card h3 {
  letter-spacing: 0;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1.04;
}
.hero h1 span {
  display: block;
  color: var(--gold);
}
.hero__content p {
  max-width: 760px;
  margin: 32px auto 0;
  font-size: var(--step-1);
  line-height: 1.6;
  color: #f6dfb7;
}
.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 32px;
  max-width: 920px;
  margin: 64px auto 0;
}
.hero__actions--single {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 64px auto 0;
  border: 1px solid rgba(233, 197, 134, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(0, 15, 36, 0.46);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero-stat {
  position: relative;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  text-align: center;
}
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(233, 197, 134, 0.32);
}
.hero-stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(36px, 3vw, 52px);
  line-height: 0.98;
  font-weight: 400;
  text-wrap: balance;
}
.hero-stat--wide strong {
  font-size: clamp(30px, 2.4vw, 42px);
}
.hero-stat span {
  display: block;
  margin-top: 12px;
  color: #fff3dc;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.audience-heading {
  position: relative;
  z-index: 1;
  max-width: 1282px;
  margin: 120px auto 0;
}
.audience-heading h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}
.audience-heading--light {
  margin-top: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  padding: 16px 28px;
  font-size: var(--step-1);
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--outline {
  border: 1px solid rgba(233, 197, 134, 0.72);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}
.button--outline:hover {
  background: rgba(233, 197, 134, 0.13);
}
.button--solid {
  border: 1px solid rgba(233, 197, 134, 0.32);
  background: var(--navy);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.button--solid:hover {
  background: var(--navy-deep);
}
.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1282px;
  margin: 64px auto 0;
}
.audience-item {
  position: relative;
}
.audience-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 36px 44px;
  border: 1px solid rgba(233, 197, 134, 0.3);
  color: var(--text);
  transition: border-color 280ms ease, box-shadow 280ms ease;
}
.audience-card:hover {
  border-color: rgba(233, 197, 134, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.audience-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 35%;
  width: 120px;
  height: 3px;
  background: var(--gold);
  opacity: 0.6;
  transition: width 280ms ease, opacity 280ms ease;
}
.audience-card:hover::after {
  width: 168px;
  opacity: 1;
}
.audience-card__label {
  position: absolute;
  top: 50%;
  left: -96px;
  transform: translateY(-50%) rotate(-90deg);
  color: #fff;
  font-family: var(--font-serif);
  font-size: var(--step-3);
  line-height: 1;
  transform-origin: center;
  white-space: nowrap;
  z-index: 2;
}
.audience-card__label--right {
  left: auto;
  right: -110px;
  transform: translateY(-50%) rotate(-90deg);
}
.audience-card h2,
.audience-card h3 {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: var(--step-5);
  font-weight: 400;
  line-height: 1.1;
}
.audience-card p {
  max-width: 540px;
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.6;
  color: #f8dfb6;
}
.audience-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: gap 200ms ease, color 200ms ease;
}
.audience-card a:hover {
  gap: 32px;
  color: #f0d9a0;
}
.audience-card a i {
  font-size: 18px;
  transition: transform 200ms ease;
}
.audience-card a:hover i {
  transform: translateX(4px);
}
.section-pad {
  padding: 120px clamp(32px, 7vw, 128px);
}
.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
  background: var(--paper);
}
.intro__title p {
  margin: 0 0 18px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.08;
}
.intro h2 {
  margin: 0;
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1.04;
}
.intro__copy {
  padding-top: 8px;
}
.intro__copy p {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: var(--step-1);
  line-height: 1.7;
  color: var(--gray);
}
.intro__copy .button {
  width: min(420px, 100%);
  margin-top: 16px;
}
.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(168, 142, 102, 0.38);
  background: #fff;
}
.about-stat {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  text-align: center;
}
.about-stat + .about-stat {
  border-left: 1px solid rgba(168, 142, 102, 0.24);
}
.about-stat strong {
  display: block;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 400;
  line-height: 1;
}
.about-stat span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.solutions {
  background: var(--paper);
  padding: 80px 0;
}
.solutions h2 {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 32px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}
.solutions__intro {
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0 32px;
  color: var(--gray);
  font-family: var(--font-sans);
  font-size: var(--step-1);
  line-height: 1.7;
  text-align: center;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1282px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
}
.solution-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 48px 40px 40px;
  color: #fff;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.solution-card--one {
  background: var(--blue-soft);
}
.solution-card--two {
  background: var(--blue-mid);
}
.solution-card--three {
  background: var(--navy);
}
.solution-card--four {
  background: var(--navy-dark);
}
.solution-card__num {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.solution-card h3 {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}
.solution-card p {
  flex: 1;
  max-width: 320px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: gap 200ms ease, color 200ms ease;
}
.solution-card a:hover {
  gap: 14px;
  color: var(--gold);
}
.solution-card a::after {
  content: "\2192";
  font-size: 18px;
  transition: transform 200ms ease;
}
.solution-card a:hover::after {
  transform: translateX(4px);
}
.solution-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
}
.solution-card__actions a {
  margin-top: 0;
}
.solution-grid--four .solution-card h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}
.cards-section {
  background: #fff;
}
.cards-section h2,
.partners-logos h2 {
  max-width: 900px;
  margin: 0 auto 64px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}
.cards-section--dark {
  background: var(--navy);
  color: var(--text);
}
.cards-section--dark h2 {
  color: var(--gold);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1243px;
  margin: 0 auto;
  background: rgba(168, 142, 102, 0.22);
}
.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
  min-height: 300px;
  padding: 36px;
  background: var(--paper);
}
.feature-card--dark {
  background: rgba(255, 255, 255, 0.045);
}
.cards-section--dark .feature-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
.cards-section--dark .feature-card {
  padding: clamp(28px, 2.6vw, 38px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card h3 {
  margin: 0 0 24px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}
.feature-card--dark h3 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.4vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 16px;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  letter-spacing: 0.02em;
}
.feature-card p {
  margin: 0;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.feature-card--dark p {
  color: rgba(248, 223, 182, 0.85);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.6;
  overflow-wrap: normal;
  margin: 0;
}
.contact-channels {
  background: #fff;
}
.contact-channels h2 {
  max-width: 900px;
  margin: 0 auto 64px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}
.contact-channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-channel-card p {
  margin-bottom: 28px;
}
.contact-channel-card__button {
  width: 100%;
  margin-top: auto;
  background: #063b68;
  border-color: #063b68;
  color: #fff;
  font-weight: 700;
}
.contact-channel-card__button:hover {
  background: #001f3f;
  border-color: #001f3f;
}
.partners-logos {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  background: #fff;
}
.partners-logos h2 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}
.partners-logos p {
  max-width: 700px;
  margin: 0;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.7;
}
.partners-logos__notes {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 8px auto 0;
}
.partners-logos__notes p {
  max-width: 100%;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}
.partners-logos__notes strong {
  color: var(--blue);
  font-weight: 700;
}
.partners-logos__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}
@media (max-width: 900px) {
  .partners-logos__image {
    width: 100%;
  max-width: 100%;
  }
}
.process-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  background: #fff;
}

/* Logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
  width: 100%;
}
.logo-grid img {
  max-width: 140px;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.logo-grid img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .logo-grid img {
    max-width: 80px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .logo-grid img {
    max-width: 70px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .logo-grid img {
    max-width: 60px;
    max-height: 40px;
  }
}

.process-section h2 {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}
.process-section__intro p {
  max-width: 430px;
  margin: 0;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.7;
}
.process-list {
  display: grid;
  gap: 1px;
  background: rgba(168, 142, 102, 0.22);
}
.process-list p {
  margin: 0;
  padding: 24px 28px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.16;
}
.proof {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.proof__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.proof__intro {
  margin-bottom: 56px;
}
.proof h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}
.proof__intro p {
  margin: 0 auto;
  color: var(--gray);
  font-size: var(--step-1);
  line-height: 1.7;
  max-width: 520px;
  text-align: center;
}
.proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 31, 60, 0.08);
  border-bottom: 1px solid rgba(0, 31, 60, 0.08);
}
.proof-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 40px 24px;
  text-align: center;
}
.proof-metric + .proof-metric {
  border-left: 1px solid rgba(0, 31, 60, 0.08);
}
.proof-metric__value {
  display: block;
  color: #A88E66;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.proof-metric__label {
  display: block;
  color: var(--gray);
  font-family: var(--font-sans);
  font-size: var(--step-1);
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .proof {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .proof__intro {
    margin-bottom: 40px;
  }
  .proof__intro p {
    max-width: 100%;
  }
  .proof__metrics {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
  }
  .proof-metric {
    padding: 24px 16px;
  }
  .proof-metric + .proof-metric {
    border-left: 0;
    border-top: 1px solid rgba(0, 31, 60, 0.08);
  }
}
.audience-section {
  background: var(--navy);
  color: var(--text);
}
.cta {
  background: #fff;
  padding-top: 0;
}
.cta--spaced {
  margin-top: 64px;
}
.cta > div {
  width: min(1282px, 100%);
  margin: 0 auto;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--mist);
}
.cta h2 {
  max-width: 990px;
  margin: 0 0 24px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}
.cta p {
  max-width: 920px;
  margin: 0 0 40px;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.7;
}
.cta .button {
  width: auto;
  max-width: none;
  align-self: center;
  min-width: 285px;
}
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  background: #fff;
  padding-top: 56px;
}
.contact__intro h2 {
  margin: 0 0 20px;
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}
.contact__intro p {
  max-width: 340px;
  margin: 0;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.7;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-form label,
.contact-form fieldset {
  margin: 0;
}
.contact-form label span,
.contact-form fieldset legend {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0, 31, 60, 0.16);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 31, 60, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 31, 60, 0.08);
}
.contact-form textarea,
.contact-form label:nth-child(5),
.contact-form fieldset,
.contact-form .button {
  grid-column: 1 / -1;
}
.partner-form label:nth-child(5) {
  grid-column: auto;
}
.contact-form .form-field--wide {
  grid-column: 1 / -1;
}
.contact-form fieldset {
  border: 1px solid rgba(0, 31, 60, 0.12);
  padding: 18px 20px 20px;
}
.contact-form__interest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}
.contact-form__interest label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f3136;
  font-size: 15px;
  line-height: 1.5;
}
.contact-form__interest input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.site-footer {
  background: var(--navy-dark);
  color: var(--text);
  padding: 72px clamp(32px, 7vw, 128px) 28px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  max-width: 1243px;
  margin: 0 auto;
}
.site-footer__brand img {
  width: min(220px, 70vw);
  filter: brightness(0) saturate(100%) invert(88%) sepia(28%) saturate(628%) hue-rotate(347deg) brightness(105%) contrast(92%);
}
.site-footer__brand p {
  max-width: 420px;
  margin: 28px 0 0;
  color: #f8dfb6;
  font-size: var(--step-1);
  line-height: 1.7;
}
.site-footer h2 {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 400;
  line-height: 1.15;
}
.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
.site-footer__nav h2 {
  flex: 0 0 100%;
}

.site-footer a {
  color: #f8dfb6;
  font-size: var(--step-1);
  line-height: 1.55;
  transition: color 180ms ease;
}
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(233, 197, 134, 0.22);
  white-space: nowrap;
}
.site-footer__nav a:first-of-type {
  padding-left: 0;
}
.site-footer__nav a:last-child {
  border-right: none;
  padding-right: 0;
}
.site-footer a:hover {
  color: var(--gold);
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1282px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(233, 197, 134, 0.24);
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(248, 223, 182, 0.72);
  font-size: 14px;
  line-height: 1.5;
}
.site-footer__social {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  font-size: 27px;
}
@media (max-width: 1100px) {
  .site-header {
    padding: 28px 32px 16px;
  }
  .main-nav {
    gap: 24px;
    font-size: var(--step-1);
  }
  .hero {
    min-height: auto;
    padding: 152px 32px 96px;
  }
  .hero__actions,
  .hero__stats,
  .about-stats,
  .audience-grid,
  .intro,
  .feature-grid,
  .feature-grid--three,
  .feature-grid--four,
  .partners-logos,
  .process-section,
  .proof,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    gap: 24px;
    margin-top: 48px;
  }
  .hero__stats {
    gap: 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }
  .hero-stat {
    border: 1px solid rgba(233, 197, 134, 0.42);
    background: rgba(0, 15, 36, 0.48);
  }
  .hero-stat + .hero-stat {
    border-left: 1px solid rgba(233, 197, 134, 0.42);
  }
  .about-stat {
    border: 1px solid rgba(168, 142, 102, 0.22);
  }
  .about-stat + .about-stat {
    border-left: 1px solid rgba(168, 142, 102, 0.22);
  }
  .audience-grid {
    margin-top: 96px;
  }
  .audience-item {
    width: 100%;
    max-width: none;
  }
  .audience-card__label,
  .audience-card__label--right {
    position: static;
    display: block;
    margin: 0 0 16px;
    transform: none;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .contact-form__interest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .site-footer {
    padding: 56px 24px 28px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .site-footer__nav a {
    padding: 0;
    border-right: none;
    white-space: normal;
  }
  .site-footer__nav a:first-of-type {
    padding-left: 0;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .site-header {
    padding: 20px 20px 16px;
  }
  .brand {
    width: 192px;
  }
  .menu-toggle {
    position: relative;
    z-index: 27;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--gold);
  }
  .menu-toggle i {
    font-size: 28px;
    line-height: 1;
  }
  .main-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 24;
    display: grid;
    gap: 16px;
    padding: 88px 24px 24px;
    background: rgba(0, 20, 39, 0.97);
    font-size: var(--step-1);
    transform: translateY(-100%);
    transition: transform 220ms ease;
  }
  .site-header.is-open .main-nav {
    transform: translateY(0);
  }
  .instagram-link {
    margin-top: 8px;
  }
  .hero {
    padding: 136px 20px 72px;
  }
  .hero__content,
  .hero__actions,
  .hero__stats,
  .about-stats,
  .audience-grid,
  .audience-item,
  .audience-card,
  .intro,
  .proof,
  .solution-grid,
  .contact,
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero__actions,
  .audience-grid {
    display: flex;
    flex-direction: column;
  }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-stat {
    min-height: 132px;
    padding: 22px 16px;
  }
  .hero-stat strong {
    font-size: 34px;
  }
  .hero-stat--wide strong {
    font-size: 28px;
  }
  .hero-stat span {
    font-size: 12px;
  }
  .hero::before {
    height: 720px;
    background-position: 58% top;
  }
  .hero h1 {
    font-size: var(--step-4);
    overflow-wrap: break-word;
  }
  .hero__content p,
  .intro__copy p,
  .solution-card p,
  .proof__intro p,
  .cta p,
  .contact__intro p {
    font-size: var(--step-1);
  }
  .button {
    width: 100%;
  max-width: 100%;
    max-width: 100%;
  max-width: 100%;
    min-height: 52px;
    padding: 16px 20px;
    font-size: var(--step-1);
    overflow-wrap: anywhere;
  }
  .audience-card {
    min-height: 0;
    padding: 28px 24px 36px;
  }
  .audience-card::after {
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
  }
  .audience-card h2,
  .audience-card h3 {
    margin-bottom: 24px;
    font-size: var(--step-4);
  }
  .audience-card p {
    font-size: var(--step-1);
    overflow-wrap: anywhere;
  }
  .audience-card a {
    margin-top: 32px;
    font-size: var(--step-3);
    overflow-wrap: anywhere;
  }
  .section-pad {
    padding: 80px 24px;
  }
  .intro__title p,
  .intro h2,
  
  .cta h2,
  .contact__intro h2 {
    font-size: var(--step-5);
  }
  .highlight__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlight__content p {
    max-width: 100%;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    background: transparent;
    gap: 12px;
  }
  .about-stat {
    min-height: 0;
    padding: 20px 14px;
    border: 1px solid rgba(168, 142, 102, 0.22);
    background: #fff;
  }
  .about-stat + .about-stat {
    border-left: 1px solid rgba(168, 142, 102, 0.22);
  }
  .about-stat strong {
    font-size: clamp(28px, 7vw, 40px);
  }
  .about-stat span {
    font-size: 11px;
  }
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
  }
  .steps-flow__item {
    padding: 24px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .steps-flow__item:hover {
    transform: none;
    box-shadow: none;
  }
  .cta > div {
    padding: 48px 24px;
  }
  .cta .button {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
  }
  .audience-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .audience-card__label,
  .audience-card__label--right {
    position: static;
    display: block;
    margin: 0 0 16px;
    transform: none;
  }
  .audience-heading,
  .feature-grid,
  .partners-logos__notes,
  .proof__inner,
  .cards-section h2,
  .partners-logos h2,
  .contact-channels h2,
  .testimonials-track,
  .solutions h2,
  .partners-logos p,
  .solutions__intro,
  .process-section h2,
  .presence__lead,
  .process-section__intro p,
  .site-footer__brand p {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
  }
}

/* ===== Presença no Brasil ===== */
.presence {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: #000f22;
  color: var(--text);
  padding-top: 120px;
  padding-bottom: 120px;
}
.presence__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.15;
}
.presence__title span {
  color: var(--gold);
}
.presence__lead {
  margin: 20px 0 0;
  color: rgba(243, 231, 210, 0.7);
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
}
.presence__stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.presence-stat {
  flex: 1;
  padding: 24px 20px;
  border: 1px solid rgba(233, 197, 134, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.presence-stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1;
}
.presence-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(243, 231, 210, 0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.presence__map {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.presence__map img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.presence__map-mobile {
  display: none;
}
@media (max-width: 900px) {
  .presence {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .presence__map {
    display: none;
  }
  .presence__map-mobile {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: 32px;
  }
  .presence__map-mobile img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .presence__lead {
    max-width: 100%;
  }
}

/* ===== Depoimentos ===== */
.testimonials {
  background: radial-gradient(120% 130% at 8% 18%, #0d2a4d 0%, #06152e 40%, #010a1c 78%);
  text-align: center;
  overflow: hidden;
  padding: 80px 24px;
}

.testimonials h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  color: #fff;
  margin: 0 0 16px;
}

.testimonials__sub {
  color: rgba(233,197,134,0.6);
  font-size: 14px;
  margin: 0 0 48px;
}

.testimonials-track {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
}

.testimonial-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: left;
}

.testimonial-stars {
  color: #C9A96E;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #e6edf3;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A96E, #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.testimonial-info {
  font-size: 12px;
  color: rgba(233,197,134,0.5);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.3);
  background: transparent;
  color: #C9A96E;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.testimonial-btn:hover {
  background: #C9A96E;
  color: #000;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.testimonial-dot.active {
  background: #C9A96E;
  transform: scale(1.3);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}


/* ═══════════════════════════════════════════════════════
   Section Highlight (Filosofia) — capital-invest
   ═══════════════════════════════════════════════════════ */
.section-highlight {
  background: var(--navy);
  color: var(--text);
}
.highlight__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  max-width: 1282px;
  margin: 0 auto;
}
.highlight__content h2 {
  margin: 0 0 28px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}
.highlight__content h2 span {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}
.highlight__content p {
  max-width: 520px;
  font-size: var(--step-1);
  line-height: 1.7;
  color: rgba(197, 205, 216, 0.85);
}
.highlight__principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.highlight-principle {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(233, 197, 134, 0.12);
  transition: border-color 200ms ease;
}
.highlight-principle:last-child {
  border-bottom: none;
}
.highlight-principle:hover {
  border-bottom-color: rgba(233, 197, 134, 0.35);
}
.highlight-principle__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(233, 197, 134, 0.3);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  transition: background 200ms ease, border-color 200ms ease;
}
.highlight-principle:hover .highlight-principle__icon {
  background: rgba(233, 197, 134, 0.08);
  border-color: rgba(233, 197, 134, 0.5);
}
.highlight-principle p {
  margin: 0;
  padding-top: 12px;
  font-size: var(--step-1);
  line-height: 1.5;
  color: #e0e6ed;
}

/* ═══════════════════════════════════════════════════════
   Steps Flow — capital-invest process section
   ═══════════════════════════════════════════════════════ */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1282px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.06);
}
.steps-flow__item {
  position: relative;
  padding: 40px 32px 36px;
  background: #fff;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.steps-flow__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.steps-flow__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.steps-flow__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
}
.steps-flow__item h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.2;
}
.steps-flow__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════
   >>> ATENÇÃO YASMIN: NÃO APAGAR ESTE BLOCO <<<
   Botão "Falar com Humano" no header + IA flutuante
   ═══════════════════════════════════════════════════════ */

.nav-btn-humano {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #F4E38D;
  border: none;
  border-radius: 100px;
  color: #000 !important;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-btn-humano:hover {
  background: #fff;
  color: #000 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

@keyframes bolhaAparece {
  0%   { opacity: 0; transform: translateY(-50%) translateX(20px); }
  8%   { opacity: 1; transform: translateY(-50%) translateX(0); }
  75%  { opacity: 1; transform: translateY(-50%) translateX(0); }
  92%  { opacity: 0; transform: translateY(-50%) translateX(20px); }
  100% { opacity: 0; transform: translateY(-50%) translateX(20px); }
}
.btn-ia-flutuante {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a237e, #283593);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(26,35,126,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.btn-ia-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(26,35,126,0.5);
}
.btn-ia-flutuante svg { width: 24px; height: 24px; stroke: currentColor; }
.btn-ia-flutuante .ia-bolha {
  position: absolute;
  right: 62px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
  background: #fff;
  color: #1a237e;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  pointer-events: none;
  animation: bolhaAparece 8s ease-in-out infinite;
  animation-delay: 3s;
}
.btn-ia-flutuante .ia-bolha::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 768px) {
  .btn-ia-flutuante { right: 16px; bottom: 56px; width: 48px; height: 48px; }
  .btn-ia-flutuante svg { width: 20px; height: 20px; }
  .btn-ia-flutuante .ia-bolha { display: none; }
}
/* ══════════════════════════════════════════════
   FIM DO BLOCO
   ══════════════════════════════════════════════ */

/* Menu menor */
.main-nav {
  gap: clamp(14px, 1.8vw, 24px) !important;
  font-size: 14px !important;
}
.main-nav a {
  font-size: 14px !important;
}


/* ══════════════════════════════════════════════
   Dropdown "Parceiro" (cabeçalho e rodapé)
   ══════════════════════════════════════════════ */
.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 300;
  transition: color 180ms ease;
}
.nav-dd-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}
.nav-dd-toggle:hover { color: var(--gold); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 8px;
  background: #0a1a2c;
  border: 1px solid rgba(233,197,134,0.16);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 100;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 300;
  transition: background 160ms ease, color 160ms ease;
}
.nav-dd-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

/* Dropdown no rodapé (herda estilo de link com separador) */
.site-footer__nav .nav-dd { position: relative; }
.site-footer__nav .nav-dd-toggle {
  padding: 0 18px;
  border-right: 1px solid rgba(233,197,134,0.22);
  color: #f8dfb6;
  font-size: var(--step-1);
  line-height: 1.55;
  font-weight: 400;
}
.site-footer__nav .nav-dd-toggle:hover { color: #fff; }
.site-footer__nav .nav-dd-menu { left: 18px; transform: translateX(0) translateY(8px); }
.site-footer__nav .nav-dd:hover .nav-dd-menu,
.site-footer__nav .nav-dd:focus-within .nav-dd-menu { transform: translateX(0) translateY(0); }

/* Mobile: menu overlay — dropdown expandido inline */
@media (max-width: 900px) {
  .nav-dd { position: static; width: 100%; justify-content: center; }
  .nav-dd-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 6px 0 0;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dd:hover .nav-dd-menu { transform: none; }
  .nav-dd-menu a { text-align: center; padding: 8px 0; }
  .site-footer__nav .nav-dd-menu { left: auto; }
}

/* ═══ Contato: subtítulo da seção "Escolha como deseja ser atendido" ═══ */
.contact-channels h2 { margin-bottom: 18px; }
.contact-channels__intro {
  max-width: 760px;
  margin: 0 auto 56px;
  color: #2f3136;
  font-size: var(--step-1);
  line-height: 1.7;
  text-align: center;
}

/* ═══ Vídeo institucional na primeira seção (Capital Invest / Sobre) ═══ */
.hero--compact { padding-bottom: 150px; }
.hero__video {
  margin: 56px auto 0;
  max-width: 880px;
}
.hero__video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background: #000;
}
@media (max-width: 900px) {
  .hero__video { max-width: 100%; margin-top: 40px; }
}

/* ═══ Depoimentos em vídeo (parceiros) — 3 lado a lado ═══ */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.video-testimonial video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
@media (min-width: 769px) and (max-width: 920px) {
  .video-testimonials { gap: 12px; max-width: 100%; }
}
@media (max-width: 768px) {
  .video-testimonials { grid-template-columns: 1fr; gap: 20px; }
}
