/* ═══════════════════════════════════════════════════════════════
   TABELANDO COM TAMBELLINI — Design System + Layout
   Mobile-first | Breakpoints: 375 · 768 · 1280
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:              #0B1628;
  --navy-mid:          #0F1F38;
  --navy-card:         #142035;
  --navy-deep:         #070F1C;
  --gray-light:        #F2F2F4;
  --gray-card:         #FFFFFF;
  --blue:              #1A5FE8;
  --blue-dark:         #1248C0;
  --cyan:              #1FB6F0;
  --white:             #FFFFFF;
  --orange:            #E85400;
  --text-light:        #FFFFFF;
  --text-dark:         #0B1628;
  --text-muted-light:  rgba(255, 255, 255, 0.55);
  --text-muted-dark:   rgba(11, 22, 40, 0.50);
  --border-light:      rgba(255, 255, 255, 0.10);
  --border-dark:       rgba(11, 22, 40, 0.10);
  --gradient-blue:     linear-gradient(135deg, #1A5FE8, #00C2E0);
  --gradient-navy:     linear-gradient(180deg, #0B1628 0%, #0F1F38 100%);
  --radius-btn:  4px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --spacing-xs:  8px;
  --spacing-sm:  16px;
  --spacing-md:  24px;
  --spacing-lg:  40px;
  --spacing-xl:  64px;
  --spacing-2xl: 96px;
  --section-pad-mobile: 64px 20px;
  --section-pad-tablet: 80px 32px;
  --section-pad-desktop: 112px 0;
  --navbar-h: 68px;
  --site-header-h: 100px;

  /* Direção B */
  --navy-900:       #06122B;
  --royal:          #1A5FE8;
  --royal-soft:     #3E7AEE;
  --on-dark-soft:   #C5CEE0;
  --on-dark-mute:   #9CB0CC;
  --on-dark-line:   rgba(255, 255, 255, 0.10);
  --on-dark-line-2: rgba(255, 255, 255, 0.06);
  --font-mono:      "JetBrains Mono", "SF Mono", Consolas, monospace;
  --glow-cyan:       0 0 0 1px rgba(31, 182, 240, 0.30), 0 4px 20px rgba(31, 182, 240, 0.18);
  --glow-cyan-hover: 0 0 0 1px rgba(31, 182, 240, 0.50), 0 8px 32px rgba(31, 182, 240, 0.28);
  --transition-fast: 0.18s ease;
  --transition-mid:  0.32s ease;

  /* Chip / módulo de sistema (D4 redesign) */
  --radius-chip:            10px;
  --card-chip-bg:           rgba(255, 255, 255, 0.04);
  --card-chip-border:       rgba(26, 95, 232, 0.18);
  --card-chip-border-hover: rgba(26, 95, 232, 0.45);
  --card-chip-glow:         0 0 0 1px rgba(26, 95, 232, 0.20),
                            0 4px 20px rgba(26, 95, 232, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Geologica', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--navy);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

ul[role="list"] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1280px) {
  .container { padding: 0 40px; }
}

.bg-navy      { background-color: var(--navy); }
.bg-navy-mid  { background-color: var(--navy-mid); }
.bg-navy-deep { background-color: var(--navy-deep); }
.bg-gray-light { background-color: var(--gray-light); }

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

/* ─── ANIMAÇÕES ──────────────────────────────────────────────── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 95, 232, 0.5); transform: scale(1); }
  50%      { box-shadow: 0 0 0 14px rgba(26, 95, 232, 0); transform: scale(1.02); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Card do form */
.form-card {
  background: var(--gray-light);
  border: 1px solid #E2E6EE;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(11, 22, 40, 0.06);
}
@media (min-width: 768px) {
  .form-card {
    padding: 40px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Desktop: pareia campos lado a lado (Opção A aprovada — reduz altura do card ~40%) */
@media (min-width: 768px) {
  .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 18px;
  }
  .form__field--full,
  .form__submit,
  .form__microcopy {
    grid-column: 1 / -1;
  }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.form__field label span[aria-hidden="true"] {
  color: var(--blue);
}
.form__field input,
.form__field select {
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #D1D6E0;
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
}
.form__field input::placeholder {
  color: #8794AB;
}
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 95, 232, 0.12);
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230B1628' stroke-width='2'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form__microcopy {
  text-align: center;
  font-size: 14px;
  color: #5B6B85;
  margin: 0;
}

.form__field.has-error input,
.form__field.has-error select { border-color: #e53e3e; }

.form__hint { color: #e53e3e; font-size: 0.75rem; margin-top: 4px; display: block; }

.form__field.is-valid input,
.form__field.is-valid select { border-color: #38a169; }

.form__submit-error { color: #e53e3e; font-size: 0.875rem; margin-top: 8px; grid-column: 1 / -1;}
.form__submit.is-loading { opacity: 0.7; pointer-events: none; }



/* ─── REVEAL ON SCROLL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PLACEHOLDER ────────────────────────────────────────────── */
.placeholder {
  background: var(--navy-card);
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-light);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  min-height: 80px;
  width: 100%;
}

.placeholder::before {
  content: attr(data-spec);
}

.bg-gray-light .placeholder,
.bg-gray-light .placeholder::before {
  background: #E8E8EC;
  border-color: var(--border-dark);
  color: var(--text-muted-dark);
}

.placeholder--logo  { width: 160px; height: 40px; min-height: 0; border-radius: var(--radius-sm); }
.placeholder--logo-footer { width: 140px; height: 36px; min-height: 0; border-radius: var(--radius-sm); }
.placeholder--tall  { min-height: 360px; }
.placeholder--video { min-height: 180px; }
.placeholder--mentor-foto { width: 120px; height: 120px; border-radius: 50%; min-height: 0; align-self: center; flex-shrink: 0; }
.placeholder--fundador { width: 100%; min-height: 280px; }
.placeholder--partner-logo { width: 120px; height: 52px; min-height: 0; flex-shrink: 0; }

/* ─── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.eyebrow--light {
  border-color: var(--border-light);
  color: var(--text-muted-light);
}

.eyebrow--dark {
  border-color: var(--border-dark);
  color: var(--text-muted-dark);
}

.eyebrow::before {
  content: '•';
  color: var(--blue);
  animation: pulse 2s infinite;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn--outline:hover {
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}

.btn--pulse {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  animation: ctaPulse 2.5s ease infinite;
  font-size: 14px;
}

.btn--pulse:hover {
  background: var(--blue-dark);
}

/* ─── TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(26, 95, 232, 0.12);
  color: var(--cyan);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee__track--slow {
  animation-duration: 40s;
}

.marquee__track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted-light);
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee--dark .marquee__track span {
  color: var(--text-muted-dark);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  transition: background var(--transition-mid), box-shadow var(--transition-mid);
}

.navbar.is-scrolled {
  background: var(--navy);
  box-shadow: 0 1px 0 var(--border-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--spacing-md);
}

.navbar__nav { display: none; }

.navbar__cta { display: none; }

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: var(--navy-card);
  border-top: 1px solid var(--border-light);
  padding: var(--spacing-md) 20px var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-mid), opacity var(--transition-mid);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .navbar__burger { display: none; }
  .mobile-menu { display: none !important; }
  .navbar__nav { display: flex; }
  .navbar__cta { display: inline-flex; }

  .navbar__links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
  }

  .navbar__links a {
    color: var(--text-muted-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
  }

  .navbar__links a:hover {
    color: var(--white);
  }
}

.btn--ghost-nav {
  align-items: center;
  padding: 10px 18px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.18s;
}

.btn--ghost-nav:hover { background: var(--blue-dark); }

/* ═══════════════════════════════════════════════════════════════
   DOBRA 1: HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  /* min-height: 100svh; */
  padding-top: var(--navbar-h);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 30%,
      rgba(26, 95, 232, 0.10) 0%,
      transparent 65%),
    radial-gradient(ellipse 55% 50% at 8% 95%,
      rgba(0, 194, 224, 0.06) 0%,
      transparent 60%),
    linear-gradient(135deg,
      var(--navy-deep) 0%,
      var(--navy) 55%,
      #0E1A30 100%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--spacing-xl) 20px;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
    min-height: calc(100svh - var(--navbar-h));
  }
}

/* LADO ESQUERDO */
.hero__left {
  position: relative;
  flex: 0 0 100%;
  max-width: 540px;
}

@media (min-width: 1024px) {
  .hero__left {
    flex: 0 0 42%;
    padding-left: var(--spacing-lg);
  }
}

.hero__rule { display: none; }

@media (min-width: 1024px) {
  .hero__rule {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
      var(--blue) 0%,
      rgba(26, 95, 232, 0.3) 35%,
      transparent 90%);
  }

  .hero__rule-dot {
    position: absolute;
    top: 0;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(26, 95, 232, 0.15);
    animation: pulse 2s infinite;
  }
}

/* Eyebrow pill — componente genérico */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(26, 95, 232, 0.4);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26, 95, 232, 0.06);
  margin-bottom: var(--spacing-lg);
}

.eyebrow-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

/* Variante para fundos escuros */
.bg-navy .eyebrow-pill,
.bg-navy-mid .eyebrow-pill,
.bg-navy-deep .eyebrow-pill,
.hero .eyebrow-pill {
  color: var(--cyan);
  background: rgba(26, 95, 232, 0.08);
}

/* H1 em estrofes */
.hero__h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  max-width: 540px;
}

.hero__h1-stanza { display: block; }

.hero__h1-stanza--accent { font-weight: 900; }

.hero__h1 strong {
  color: var(--blue);
  font-weight: inherit;
}

.hero__sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin-bottom: var(--spacing-lg);
}

/* Stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: var(--spacing-xl);
  list-style: none;
  padding: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(26, 95, 232, 0.38);
}

.hero__stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero__stat strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.hero__stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* CTAs */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--primary-exec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: 4px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26, 95, 232, 0.20);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.btn--primary-exec:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 95, 232, 0.28);
}

.btn--primary-exec svg { transition: transform 0.18s ease; }

.btn--primary-exec:hover svg { transform: translateX(4px); }

/* Pattern hexagonal decorativo */
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 130% 100% at 0% 0%,
    black 0%, rgba(0,0,0,0.55) 42%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 130% 100% at 0% 0%,
    black 0%, rgba(0,0,0,0.55) 42%, transparent 70%);
  opacity: 0.85;
}

.hero__pattern svg { width: 100%; height: 100%; display: block; }

.hero__text { position: relative; z-index: 1; }

/* LADO DIREITO: MOSAICO */
.hero__mosaic {
  position: relative;
  flex: 1 1 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

@media (min-width: 1024px) {
  .hero__mosaic { flex: 1 1 58%; }
}

.hero__mosaic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__mosaic-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  pointer-events: none;
}

.hero__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  overflow: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11, 22, 40, 0.92) 0%,
    rgba(11, 22, 40, 0.55) 35%,
    rgba(11, 22, 40, 0) 65%);
  z-index: 0;
}

.hero__card-label,
.hero__card-desc {
  position: relative;
  z-index: 1;
  display: block;
}

.hero__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

.hero__card-desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  max-width: 260px;
}

@media (min-width: 1024px) {
  .hero__card { padding: 24px 26px; }
  .hero__card-label { font-size: 11px; margin-bottom: 6px; }
  .hero__card-desc { font-size: 13px; }
}

/* Mobile específico */
@media (max-width: 767px) {
  .hero__h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero__pattern { opacity: 0.45; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; max-width: 360px; }
  .hero__card { padding: 12px 14px; }
  .hero__card-label { font-size: 9px; letter-spacing: 0.14em; }
  .hero__card-desc { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   DOBRA 2: POR QUE EXISTIMOS
   ═══════════════════════════════════════════════════════════════ */
.proposito {
  padding: var(--section-pad-mobile);
}

.proposito__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.proposito__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  max-width: 540px;
}

.proposito__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: var(--spacing-lg);
  padding: 0;
}

.proposito__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proposito__list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 95, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.proposito__list-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark);
  padding-left: 14px;
  border-left: 2px solid var(--blue);
  padding-top: 8px;
  padding-bottom: 8px;
}

.proposito__verb {
  font-weight: 800;
  color: var(--blue);
  margin-right: 6px;
  display: inline;
}

/* Mockups em grid 2×2 */
.proposito__mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.proposito__mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: none;
  position: relative;
}

.proposito__mockup--1 { grid-column: 1; grid-row: 1; }
.proposito__mockup--2 { grid-column: 2; grid-row: 1; }
.proposito__mockup--3 { grid-column: 1 / 3; grid-row: 2; }

.proposito__mockup--1,
.proposito__mockup--2 { aspect-ratio: 4 / 3; }

.proposito__mockup--3 { aspect-ratio: 16 / 7; }

.proposito__mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proposito__mockup .placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
}

@media (max-width: 767px) {
  .proposito__list-icon { width: 36px; height: 36px; }
  .proposito__list-content { font-size: 14px; padding-left: 12px; }
  .proposito__mockups { grid-template-columns: 1fr; }
  .proposito__mockup--1,
  .proposito__mockup--2 { grid-column: 1; grid-row: auto; aspect-ratio: 16 / 10; }
  .proposito__mockup--3 { grid-column: 1; grid-row: auto; aspect-ratio: 16 / 9; }
}

@media (min-width: 768px) {
  .proposito { padding: var(--section-pad-tablet); }

  .proposito__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-2xl);
  }

  .proposito__text { flex: 1 1 50%; }
  .proposito__mockups { flex: 1 1 50%; }
}

@media (min-width: 1280px) {
  .proposito { padding: var(--section-pad-desktop); }
}

/* ═══════════════════════════════════════════════════════════════
   FAIXA: LOGOS
   ═══════════════════════════════════════════════════════════════ */
.logos-faixa {
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.logos-faixa__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: var(--spacing-md);
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   DOBRA 5: MENTORES — estilos novos estao mais abaixo (linha ~2605)
   Bloco legado removido (era pre-refatoracao Direcao B Navy)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   DOBRA 6: COMUNIDADE — CSS antigo removido (estilos novos ~linha 2551)
   DOBRA 8: FUNDADORES — estilos novos estao mais abaixo (linha ~2899)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   FOOTER (DOBRA 11)
   ═══════════════════════════════════════════════════════════════ */
.footer {
  color: var(--text-light);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__tagline {
  font-size: 15px;
  color: var(--text-muted-light);
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  list-style: none;
}

.footer__nav a {
  font-size: 15px;
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-muted-light);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.footer__bottom {
  padding: var(--spacing-md) 0;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted-light);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACESSIBILIDADE
   ═══════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DIREÇÃO B — TIPOGRAFIA BASE (guard-rails de hierarquia)
   ═══════════════════════════════════════════════════════════════ */

/* Heading principal de seção — teto 52px para ficar abaixo do H1 hero (58px) */
.h-main {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.022em;
  max-width: 18ch;
}

.h-main em { font-style: normal; color: var(--cyan); font-weight: 800 }

/* ═══════════════════════════════════════════════════════════════
   DIREÇÃO B — SITE HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(6, 18, 43, 0.78);
  border-bottom: 1px solid var(--on-dark-line-2);
}

.site-header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--site-header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__brand {
  flex: none;
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  width: 180px;
  height: auto;
}

.site-nav {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-soft);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: inherit;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

@media (hover: hover) {
  .site-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
}

.site-header__cta-desktop {
  display: none;
  flex: none;
}

.site-header__burger {
  margin-left: auto;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

@media (hover: hover) {
  .site-header__burger:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--on-dark-line-2);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--on-dark-soft);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-nav .btn--primary-exec {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

@media (hover: hover) {
  .mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .site-header__cta-desktop { display: inline-flex; }
  .site-header__burger { display: none; }
}

/* ─── NAV DROPDOWN (G360) ──────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-dropdown__chevron {
  transition: transform var(--transition-fast);
}

.nav-dropdown[data-open="true"] .nav-dropdown__chevron {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .nav-dropdown__trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(10, 22, 48, 0.96);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
  z-index: 90;
}

.nav-dropdown[data-open="true"] .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}

.nav-dropdown__menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--on-dark-soft);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown__menu a[aria-current="page"] {
  background: rgba(26, 95, 232, 0.14);
  color: #fff;
}

@media (hover: hover) {
  .nav-dropdown__menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
}

.nav-dropdown__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: inherit;
}

.nav-dropdown__sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--on-dark-mute);
  line-height: 1.35;
}

/* ─── MOBILE NAV: grupo G360 (header indentado) ─────────────────── */
.mobile-nav__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.mobile-nav__label {
  display: block;
  padding: 6px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  font-family: var(--font-mono, ui-monospace, monospace);
}

.mobile-nav__group a {
  padding-left: 28px;
}

.mobile-nav__group a[aria-current="page"] {
  color: #fff;
  background: rgba(26, 95, 232, 0.10);
}

/* ═══════════════════════════════════════════════════════════════
   DIREÇÃO B — HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 460px at 80% 22%, rgba(31, 182, 240, 0.18), transparent 65%),
    radial-gradient(700px 480px at 14% 88%, rgba(26, 95, 232, 0.16), transparent 70%);
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  flex: unset;
  max-width: none;
  padding-left: 0;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero__h1 {
  display: block;
  margin: 0 0 20px;
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: #fff;
  max-width: 20ch;
  flex-direction: unset;
  gap: 0;
}

.hero__h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  margin: 0 0 36px;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--on-dark-soft);
  max-width: 44ch;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--on-dark-line);
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.hero__stat {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}




@media (max-width: 1200px) {
    .hero__stat{
        padding-right: 10px;
        margin-right: 10px;
        font-size: 12px;
    }
}


.hero__mock-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mock-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(31, 182, 240, 0.28), transparent 70%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

.hero__mock-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .hero { padding: 80px 0 96px; }
  .hero-in {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (min-width: 1280px) {
  .hero {padding: 100px 0;}
  .hero-in {
    grid-template-columns: 1fr 0.88fr;
    gap: 80px;
  }
  .hero__mock-img { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { background: none; }
  .hero__mock-glow { display: none; }
}

/* ─── DOBRA 2: EXISTIMOS ─────────────────────────────────── */

.existimos {
  padding: 80px 0 96px;
  background: var(--navy-900);
}

.existimos__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.existimos__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.existimos__h2 {
  margin: 0;
  color: #fff;
  max-width: 100%;
}

.existimos__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.existimos__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-mute);
  letter-spacing: 0.04em;
  margin: 0;
  font-family: var(--font-mono);
}

/* Grid */
.existimos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Card */
.existimos-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-dark-line);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .existimos-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(31, 182, 240, 0.25);
  }
}

.existimos-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.existimos-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .existimos-card:hover .existimos-card__img {
    transform: scale(1.03);
  }
}

.existimos-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.existimos-card__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.10em;
  font-family: var(--font-mono);
  line-height: 1;
}

.existimos-card__verb {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.existimos-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--on-dark-soft);
  line-height: 1.55;
  margin: 4px 0 0;
}

/* CTA */
.existimos__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Tablet: 2 colunas */
@media (min-width: 768px) {
  .existimos__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .existimos__header-left { max-width: 60%; }
  .existimos__label {
    text-align: right;
    max-width: 200px;
  }
  .existimos__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* Desktop: 4 colunas */
@media (min-width: 1280px) {
  .existimos { padding: 112px 0 128px; }
  .existimos__header-left {/* max-width: 55%; */}
  .existimos__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ─── DOBRA 3: COMPARATIVO ───────────────────────────────── */

.comparativo {
  padding: 80px 0 96px;
  background: #fff;
}

/* Header */
.comparativo__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.comparativo__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparativo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.comparativo__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal);
  border-radius: 1px;
  flex-shrink: 0;
}

.comparativo__h2 {
  margin: 0;
  color: var(--navy);
}

.comparativo__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparativo__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted, #5A6B82);
  line-height: 1.6;
  margin: 0;
}

.comparativo__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted, #5A6B82);
  letter-spacing: 0.04em;
  margin: 0;
  font-family: var(--font-mono);
}

/* Layout comparativo — mobile: coluna única */
.comparativo__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Coluna base */
.comparativo__col {
  padding: 28px 24px 32px;
  border-radius: 16px;
}

.comparativo__col--sem {
  background: #F8F9FB;
  border: 1px solid #E8EDF3;
}

.comparativo__col--com {
  background: #EFF4FF;
  border: 1px solid rgba(26, 95, 232, 0.18);
}

/* Cabeçalho da coluna */
.comparativo__col-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.comparativo__col-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.comparativo__col-dot--sem {
  background: #F87171;
}

.comparativo__col-dot--com {
  background: var(--cyan);
}

.comparativo__col-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.comparativo__col-title--com {
  color: var(--royal);
}

.comparativo__col-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted, #5A6B82);
  margin-top: 3px;
  font-family: var(--font-mono);
}

/* Lista */
.comparativo__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparativo__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #374151;
}

.comparativo__item--com {
  color: #1E3A5F;
}

/* Marcadores */
.comparativo__mark {
  flex-shrink: 0;
  margin-top: 3px;
  line-height: 1;
}

.comparativo__mark--sem {
  font-size: 18px;
  font-weight: 700;
  color: #F87171;
  width: 20px;
  text-align: center;
}

.comparativo__mark--com {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(26, 95, 232, 0.12);
  border-radius: 50%;
  color: var(--royal);
  flex-shrink: 0;
}

/* Eixo central — oculto no mobile */
.comparativo__axis {
  display: none;
}

/* Desktop: 2 colunas com eixo */
@media (min-width: 1280px) {
  .comparativo { padding: 112px 0 128px; }

  .comparativo__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .comparativo__header-left { max-width: 58%; }
  .comparativo__label {
    text-align: right;
    max-width: 200px;
  }

  .comparativo__table {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .comparativo__col {
    flex: 1;
  }

  .comparativo__col--sem {
    border-radius: 16px 0 0 16px;
    border-right: none;
  }

  .comparativo__col--com {
    border-radius: 0 16px 16px 0;
    border-left: none;
  }

  /* Eixo central visível */
  .comparativo__axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .comparativo__axis-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, #D1D9E6 30%, #D1D9E6 70%, transparent);
  }

  .comparativo__axis-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 24px;
    font-size: 10px;
    font-weight: 600;
    color: #5A6B82;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    white-space: nowrap;
  }

  .comparativo__axis-badge svg {
    color: var(--royal);
  }
}

/* Tablet: 2 colunas sem eixo */
@media (min-width: 768px) and (max-width: 1279px) {
  .comparativo__table {
    flex-direction: row;
    gap: 20px;
  }
  .comparativo__col { flex: 1; }
  .comparativo__col--sem { border-radius: 16px; border-right: 1px solid #E8EDF3; }
  .comparativo__col--com { border-radius: 16px; border-left: 1px solid rgba(26,95,232,0.18); }
}

/* ─── DOBRA 4: PILARES ───────────────────────────────────── */

.pilares {
  padding: 80px 0 96px;
  background: #F8F9FB;
}

/* Header */
.pilares__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.pilares__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilares__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.pilares__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal);
  border-radius: 1px;
  flex-shrink: 0;
}

.pilares__h2 {
  margin: 0;
  color: var(--navy);
}

.pilares__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pilares__label {
  font-size: 13px;
  font-weight: 500;
  color: #5A6B82;
  letter-spacing: 0.04em;
  margin: 0;
  font-family: var(--font-mono);
}

/* Grid */
.pilares__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

/* Card */
.pilar-card {
  background: #fff;
  border: 1px solid #E8EDF3;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .pilar-card:hover {
    border-color: rgba(26, 95, 232, 0.30);
    box-shadow: 0 4px 20px rgba(26, 95, 232, 0.08);
  }
}

.pilar-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pilar-card__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.pilar-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.pilar-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: #5A6B82;
  line-height: 1.6;
  margin: 4px 0 0;
}

/* Destaque visual de lorem durante revisão */
.is-lorem {
  outline: 2px dashed rgba(255, 150, 0, 0.45);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Entregáveis */
.pilar-card__entregaveis {
  border-top: 1px solid #E8EDF3;
  padding-top: 20px;
}

.pilar-card__entregaveis-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #9CB3C9;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}

.pilar-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pilar-card__list li {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.pilar-card__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Base */
.pilares__base {
  margin-top: 32px;
  background: var(--navy-900);
  border-radius: 20px;
  overflow: hidden;
}

.pilares__base-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pilares__base-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.pilares__base-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 16px;
}

.pilares__base-title em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pilares__base-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--on-dark-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}

.pilares__base-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pilares__base-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pilares__base-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.pilares__base-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.pilares__base-item-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--on-dark-soft);
  line-height: 1.5;
  margin-top: 2px;
}

/* Tablet: 2 colunas */
@media (min-width: 768px) {
  .pilares__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .pilares__header-left { max-width: 60%; }
  .pilares__label { text-align: right; max-width: 180px; }

  .pilares__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Alinha as divisórias "Entregáveis" na mesma altura (tablet 2 col) */
  .pilar-card__desc { min-height: 100px; }

  .pilares__base-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .pilares__base-text { flex: 1; }
  .pilares__base-items { flex: 1; }
}

/* Desktop: 4 colunas */
@media (min-width: 1280px) {
  .pilares { padding: 112px 0 128px; }
  .pilares__header-left { max-width: 55%; }

  .pilares__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Alinha as divisórias "Entregáveis" na mesma altura (desktop 4 col) */
  .pilar-card__desc { min-height: 134px; }

  .pilares__base-inner { padding: 48px 56px; }
}

/* ─── DOBRA 5: MENTORES ──────────────────────────────────── */

.mentores {
  padding: 80px 0 96px;
  /* Profundidade atmosferica: radial cyan + royal + linear navy gradient */
  background:
    radial-gradient(ellipse 65% 50% at 85% 85%,
      rgba(26, 95, 232, 0.11) 0%,
      transparent 65%),
    radial-gradient(ellipse 55% 45% at 5% 10%,
      rgba(0, 194, 224, 0.06) 0%,
      transparent 60%),
    linear-gradient(135deg,
      #050B1A 0%,
      #06122B 55%,
      #0E1A30 100%);
  position: relative;
  overflow: hidden;
}

/* Pattern — canto inferior direito */
.mentores__pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.40;
  mask-image: radial-gradient(ellipse 70% 80% at 95% 95%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 95% 95%, black 0%, transparent 70%);
}
.mentores__pattern svg { width: 100%; height: 100%; display: block; }

.mentores > .container {
  position: relative;
  z-index: 1;
}

/* Header — eyebrow + h2 + sub + pills */
.mentores__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.mentores__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Eyebrow para fundo escuro (cyan, linha à esquerda) */
.mentores__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: var(--font-mono);
}

.mentores__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.mentores__h2 {
  margin: 0;
  color: #fff;
  max-width: 100%;
}

.mentores__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mentores__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--on-dark-soft);
  line-height: 1.6;
  margin: 0;
}

/* Pills de filtro — visuais, filtro ativo quando lista nome→lado for fornecida */
.mentores__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mentores__pill {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(31, 182, 240, 0.28);
  background: rgba(26, 95, 232, 0.06);
  color: var(--on-dark-soft);
  cursor: default;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* ─── CARROSSEL ─── */

.mentores__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.mentores__track-outer {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.mentores__track-outer::-webkit-scrollbar { display: none; }
.mentores__track-outer.is-dragging { cursor: grabbing; }

.mentores__track {
  display: flex;
  gap: 12px;
  width: max-content;
}

/* Poster — tamanho mobile-first */
.mentor-poster {
  flex-shrink: 0;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-poster__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (hover: hover) {
  .mentor-poster:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }
}

/* Setas de navegação — design system premium */
.mentores__nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 22, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 182, 240, 0.32);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow:
    0 8px 24px rgba(11, 22, 40, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .mentores__nav-btn:hover {
    background: rgba(31, 182, 240, 0.18);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-1px);
    box-shadow:
      0 12px 32px rgba(11, 22, 40, 0.55),
      0 0 0 4px rgba(31, 182, 240, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}
.mentores__nav-btn:active {
  transform: translateY(0);
}

/* Tablet */
@media (min-width: 768px) {
  .mentor-poster { width: 210px; }
  .mentores__track { gap: 16px; }
  .mentores__nav-btn { display: flex; }
}

/* Desktop */
@media (min-width: 1280px) {
  .mentores { padding: 112px 0 128px; }
  .mentores__pattern { width: 45%; height: 65%; }
  .mentor-poster { width: 252px; }
  .mentores__track { gap: 20px; }
}

/* ─── DOBRA 6: COMUNIDADE ───────────────────────────────────── */

.comunidade {
  padding: 80px 0 96px;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

/* Pattern — canto superior esquerdo */
.comunidade__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 55%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 80% at 5% 5%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 5% 5%, black 0%, transparent 70%);
}

.comunidade > .container {
  position: relative;
  z-index: 1;
}

/* Header */
.comunidade__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.comunidade__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Eyebrow dark-bg (cyan, linha à esquerda) */
.comunidade__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: var(--font-mono);
}

.comunidade__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.comunidade__h2 {
  margin: 0;
  color: #fff;
}

.comunidade__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comunidade__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-mute);
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
  white-space: nowrap;
}

.comunidade__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ─── Mosaico ─── */

/* Mobile: 2 colunas, foto-01 full-width em cima */
.comunidade__mosaico {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px 160px;
  gap: 12px;
}

.comunidade__foto {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.comunidade__foto--1 {
  grid-column: 1 / -1; /* full width no mobile */
}

.comunidade__foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay hover */
.comunidade__foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 43, 0);
  transition: background 0.35s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .comunidade__foto:hover .comunidade__foto-img { transform: scale(1.04); }
  .comunidade__foto:hover::after { background: rgba(6, 18, 43, 0.22); }
}

/* Tablet: 2 col, foto-01 tall na esquerda */
@media (min-width: 768px) {
  .comunidade__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .comunidade__header-left { max-width: 60%; }
  .comunidade__label {
    text-align: right;
    padding-top: 2px;
  }

  .comunidade__mosaico {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
  }

  .comunidade__foto--1 {
    grid-column: 1;
    grid-row: 1 / span 2; /* tall na esquerda */
  }

  .comunidade__foto--2 { grid-column: 2; grid-row: 1; }
  .comunidade__foto--3 { grid-column: 2; grid-row: 2; }

  /* fotos 04 e 05 saem para uma terceira linha */
  .comunidade__foto--4 { grid-column: 1; grid-row: 3; }
  .comunidade__foto--5 { grid-column: 2; grid-row: 3; }

  .comunidade__mosaico {
    grid-template-rows: 220px 220px 220px;
  }
}

/* Desktop: 3 colunas assimétricas, foto-01 tall (col 1, rows 1-2) */
@media (min-width: 1280px) {
  .comunidade { padding: 112px 0 128px; }
  .comunidade__pattern { width: 40%; height: 60%; }
  .comunidade__header-left { max-width: 55%; }

  .comunidade__mosaico {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 20px;
  }

  .comunidade__foto--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .comunidade__foto--2 { grid-column: 2; grid-row: 1; }
  .comunidade__foto--3 { grid-column: 3; grid-row: 1; }
  .comunidade__foto--4 { grid-column: 2; grid-row: 2; }
  .comunidade__foto--5 { grid-column: 3; grid-row: 2; }
}

/* ═══════════════════════════════════════════════════════════════
   D7 — FUNDADORES
   Fundo branco. 2 cards lado a lado no desktop.
   ═══════════════════════════════════════════════════════════════ */

.fundadores {
  background: #ffffff;
  padding: 72px 0 80px;
  position: relative;
}

/* ── Header ─────────────────────────────────────────────────── */
.fundadores__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.fundadores__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fundadores__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.fundadores__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal);
  border-radius: 1px;
  flex-shrink: 0;
}

.fundadores__h2 {
  margin: 0;
  color: var(--navy);
}

.fundadores__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* ── Grid ───────────────────────────────────────────────────── */
.fundadores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ── Card ───────────────────────────────────────────────────── */
.fundador-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Foto mais editorial: aspect ratio mais wide + altura reduzida */
.fundador-card__foto-wrap {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f2f5;
}

.fundador-card__foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Info ───────────────────────────────────────────────────── */
.fundador-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fundador-card__kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.fundador-card__nome {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.fundador-card__role {
  margin: 0;
  font-size: 16px;
  color: #5A6B82;
  font-style: italic;
  line-height: 1.5;
}

/* ── Credenciais ────────────────────────────────────────────── */
.fundador-card__credentials {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fundador-card__credentials li {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.fundador-card__credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal);
}

/* ── Quote (editorial, sem box cinza) ───────────────────────── */
.fundador-card__quote {
  position: relative;
  margin: 14px 0 0;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--royal);
}
/* Aspa decorativa elegante no topo */
.fundador-card__quote::before {
  content: "\201C"; /* aspas curvadas " */
  position: absolute;
  top: -16px;
  left: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--royal);
  opacity: 0.32;
  font-weight: 700;
  pointer-events: none;
}

.fundador-card__quote p {
  margin: 0;
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ── LinkedIn ───────────────────────────────────────────────── */
.fundador-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--royal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.18s ease;
}

@media (hover: hover) {
  .fundador-card__linkedin:hover {
    opacity: 0.7;
  }
}

/* ── Tablet (768px+) ────────────────────────────────────────── */
@media (min-width: 768px) {
  .fundadores {
    padding: 88px 0 96px;
  }

  .fundadores__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .fundadores__header-left { max-width: 70%; }

  .fundadores__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .fundador-card__foto-wrap {
    aspect-ratio: 5 / 4;
    max-height: 320px;
  }
}

/* Eduardo sentado: prioriza rosto + torso, corta cadeira na base */
.fundador-card__foto-img--eduardo {
  object-position: center 20%;
}

/* ── Desktop (1280px+) ──────────────────────────────────────── */
@media (min-width: 1280px) {
  .fundadores {
    padding: 96px 0 104px;
  }

  .fundadores__grid {
    gap: 48px;
  }

  .fundador-card__foto-wrap {
    max-height: 360px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D8 — OPERAÇÕES QUE LIDERAM (conversão — 3 caminhos comerciais)
   Fundo navy com radial azul de destaque.
   ═══════════════════════════════════════════════════════════════ */

.operacoes {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,95,232,0.22) 0%, transparent 70%),
    var(--navy);
  padding: 80px 0 96px;
  position: relative;
}

/* ── Header ─────────────────────────────────────────────────── */
.operacoes__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.operacoes__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.operacoes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: var(--font-mono);
}

.operacoes__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  flex-shrink: 0;
}

.operacoes__h2 {
  margin: 0;
  color: #ffffff;
}

.operacoes__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1FB6F0 0%, #1A5FE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.operacoes__sub {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  max-width: 54ch;
}

.operacoes__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
  margin: 0;
  font-family: var(--font-mono);
}

/* ── Grid ───────────────────────────────────────────────────── */
.operacoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ── Card base ──────────────────────────────────────────────── */
.operacoes-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.operacoes-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.operacoes-card__kicker {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.50);
}

.operacoes-card__titulo {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.operacoes-card__desc {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Lista de itens ─────────────────────────────────────────── */
.operacoes-card__itens {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1; /* empurra CTA para baixo */
}

.operacoes-card__itens li {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.operacoes-card__itens li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  flex-shrink: 0;
}

.operacoes-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.60);
  vertical-align: middle;
}

/* ── CTAs ───────────────────────────────────────────────────── */
.operacoes-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  min-height: 48px; /* touch target */
  align-self: flex-start;
}

.operacoes-card__cta--primary {
  background: var(--cyan);
  color: var(--navy);
}

.operacoes-card__cta--secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.20);
}

.operacoes-card__cta--ghost {
  background: transparent;
  color: rgba(255,255,255,0.60);
  border: 1px dashed rgba(255,255,255,0.25);
}

@media (hover: hover) {
  .operacoes-card__cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
  .operacoes-card:hover {
    transform: translateY(-3px);
  }
}

/* ── Empresa (destaque primary) ─────────────────────────────── */
.operacoes-card--empresa {
  background: rgba(31,182,240,0.06);
  border-color: rgba(31,182,240,0.35);
  box-shadow: 0 0 40px rgba(31,182,240,0.10);
}

.operacoes-card--empresa .operacoes-card__kicker {
  color: var(--cyan);
}

.operacoes-card--empresa .operacoes-card__itens li::before {
  background: var(--cyan);
  opacity: 0.70;
}

/* ── Indeciso (borda tracejada) ─────────────────────────────── */
.operacoes-card--indeciso {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
  background: transparent;
}

/* ── is-rascunho marker (visual pro Guilherme revisar) ─────── */
.is-rascunho {
  outline: 2px dashed rgba(255,165,0,0.50);
  outline-offset: 3px;
}

/* ── Tablet (768px+) ────────────────────────────────────────── */
@media (min-width: 768px) {
  .operacoes {
    padding: 96px 0 112px;
  }

  .operacoes__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .operacoes__header-left {max-width: 100%;}

  .operacoes__label {
    text-align: right;
    max-width: 180px;
  }

  .operacoes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Empresa ocupa linha inteira no tablet (2 col) */
  .operacoes-card--empresa {
    grid-column: 1 / -1;
  }
}

/* ── Desktop (1280px+) — 3 colunas, Empresa com leve elevação ─ */
@media (min-width: 1280px) {
  .operacoes {
    padding: 112px 0 128px;
  }

  .operacoes__grid {
    grid-template-columns: 1.08fr 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .operacoes-card--empresa {
    grid-column: auto; /* volta ao 1 col normal no desktop */
  }

  @media (hover: hover) {
    .operacoes-card--empresa:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 48px rgba(31,182,240,0.18);
    }
  }
}

/* ═══════════════════════════════════════════════════════════════
   D9 — DEPOIMENTOS (vídeos verticais 9:16)
   Fundo paper/claro. 4 reels lado a lado no desktop.
   ═══════════════════════════════════════════════════════════════ */

.depoimentos {
  background: #F5F6F8;
  padding: 80px 0 96px;
}

/* ── Header ─────────────────────────────────────────────────── */
.depoimentos__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.depoimentos__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--royal);
  font-family: var(--font-mono);
}

.depoimentos__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal);
  border-radius: 1px;
  flex-shrink: 0;
}

.depoimentos__h2 {
  margin: 0;
  color: var(--navy);
  max-width: 100%;
}

.depoimentos__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #1A5FE8 0%, #3E7AEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid ───────────────────────────────────────────────────── */
.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Reel card ──────────────────────────────────────────────── */
.depoimento-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

/* ── Placeholder (enquanto o vídeo real não chegou) ─────────── */
.depoimento-reel__placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #0F1F38 0%, #142035 60%, #070F1C 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* scan-lines decorativas — textura sutil de vídeo */
.depoimento-reel__scan-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.018) 3px,
    rgba(255,255,255,0.018) 4px
  );
  pointer-events: none;
}

.depoimento-reel__label {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.30);
}

/* ── Botão play ─────────────────────────────────────────────── */
.depoimento-reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.80);
  transition: color 0.18s ease, transform 0.18s ease;
  padding: 0;
}

.depoimento-reel__play svg circle {
  transition: fill 0.18s ease;
}

@media (hover: hover) {
  .depoimento-reel:hover .depoimento-reel__play {
    color: #ffffff;
    transform: scale(1.06);
  }
  .depoimento-reel:hover .depoimento-reel__play svg circle {
    fill: rgba(26,95,232,0.55);
  }
}

/* Estado ativo: quando o vídeo está carregado */
.depoimento-reel.is-playing .depoimento-reel__placeholder,
.depoimento-reel.is-playing .depoimento-reel__play {
  display: none;
}

.depoimento-reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Cover (capa antes do vídeo) ────────────────────────────── */
.depoimento-reel__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* foca o rosto, ajuste se precisar */
  display: block;
  border-radius: inherit;
  transition: opacity 0.3s ease;
  opacity: .5;
}

/* escurece levemente a cover pra dar contraste ao botão play */
.depoimento-reel__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* ── Tablet (768px+) ────────────────────────────────────────── */
@media (min-width: 768px) {
  .depoimentos {
    padding: 96px 0 112px;
  }

  .depoimentos__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .depoimentos__header {
    margin-bottom: 56px;
  }
}

/* ── Desktop (1280px+) ──────────────────────────────────────── */
@media (min-width: 1280px) {
  .depoimentos {
    padding: 112px 0 128px;
  }

  .depoimentos__grid {
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D10 — FAIXA CLIENTES: .logos-faixa (atualizada — após Hero)
   ═══════════════════════════════════════════════════════════════ */

.logos-faixa {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logos-faixa__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  padding: 0 20px;
}

/* Logo real de cliente (SVG monocromático sobre navy) */
.cliente-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  margin: 0 12px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.cliente-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .cliente-logo:hover img {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D10 — FAIXA PARCEIROS: .parceiros (navy, entre D8 e D9)
   ═══════════════════════════════════════════════════════════════ */

.parceiros {
  background: var(--navy);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.parceiros__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  padding: 0 20px;
}

/* Logo real de parceiro (SVG monocromático sobre navy) */
.parceiro-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  margin: 0 12px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.parceiro-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.68;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .parceiro-logo:hover img {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D10 — FOOTER (atualizado: logo real, 3 colunas nav, LGPD)
   ═══════════════════════════════════════════════════════════════ */

.footer__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 20px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Coluna brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-img {
  height: auto;
  width: 200px;
  display: block;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin: 0;
}

/* Social */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}

@media (hover: hover) {
  .footer__social-link:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.40);
  }
}

/* Colunas de navegação */
.footer__nav-cols {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__nav-col h3,
.footer__nav-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  margin: 0 0 16px;
}

.footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-col a {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s ease;
  line-height: 1.4;
}

.footer__contact-item {
  font-size: 14px !important;
  font-family: var(--font-mono);
}

@media (hover: hover) {
  .footer__nav-col a:hover {
    color: #ffffff;
  }
}

/* Barra inferior — copyright + LGPD */
.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  margin: 0;
}

.footer__lgpd {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__lgpd-link {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  transition: color 0.18s ease;
}

@media (hover: hover) {
  .footer__lgpd-link:hover {
    color: rgba(255,255,255,0.60);
  }
}

/* ── Tablet (768px+) ────────────────────────────────────────── */
@media (min-width: 768px) {
  .footer__body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 20px 64px;
    gap: 64px;
  }

  .footer__nav-cols {
    flex-direction: row;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Desktop (1280px+) ──────────────────────────────────────── */
@media (min-width: 1280px) {
  .footer__body {
    padding: 96px 20px 72px;
  }

  .footer__brand {
    max-width: 330px;
  }

  .footer__nav-cols {
    gap: 64px;
  }
}
