@import url("https://fonts.googleapis.com/css2?family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a5cff;
  --blue-dark: #1248d4;
  --blue-light: #ebf0ff;
  --black: #0a0a0a;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --font-display: "Zalando Sans SemiExpanded", sans-serif;
  --font-body: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
}

/* ── SHARED ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-primary svg {
  flex-shrink: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ── HERO ── */
#hero {
  --hero-mobile-photo: url("imgs/img1.png");
  padding-top: 64px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 92, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 92, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(26, 92, 255, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  padding: 80px 0;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 92, 255, 0.15);
  border: 1px solid rgba(26, 92, 255, 0.3);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* hero photo card */
.hero-photo-card {
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 24px;
}

.hero-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1c2535 0%, #111827 60%, #0a1020 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  object-fit: contain;
}

.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px 16px 0 0;
}

.hero-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.hero-card-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── SOBRE O MENTOR ── */
#mentor {
  padding: 96px 0;
  background: var(--white);
}

.mentor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mentor-photo-wrap {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.mentor-photo-box {
  aspect-ratio: 4/5;
  background: linear-gradient(140deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 500px;
  max-width: 100%;
  margin: 0 auto;
}

.mentor-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.mentor-photo-note {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mentor-note-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.mentor-note-text span {
  font-size: 12px;
  color: var(--gray-500);
}

.mentor-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.mentor-content h2 span {
  color: var(--blue);
}

.mentor-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.mentor-content p strong {
  color: var(--black);
  font-weight: 600;
}

.mentor-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mentor-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.mentor-tag svg {
  color: var(--blue);
}

/* ── DEPOIMENTOS MÍDIA ── */
.depo-media-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.depo-media-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}

.depo-media-item img,
.depo-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 9/16;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .depo-media-section {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── MENTORIA ── */
#mentoria {
  padding: 96px 0;
  background: var(--dark);
}

#mentoria .section-label {
  color: rgba(26, 92, 255, 0.9);
}

.mentoria-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.mentoria-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.mentoria-header h2 span {
  color: var(--blue);
}

.mentoria-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.mentoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.aprendizado-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.aprendizado-item:hover {
  border-color: rgba(26, 92, 255, 0.35);
  background: rgba(26, 92, 255, 0.05);
}

.item-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(26, 92, 255, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.item-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.item-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* como funciona */
.como-funciona {
  background: rgba(26, 92, 255, 0.08);
  border: 1px solid rgba(26, 92, 255, 0.2);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.funciona-left h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.funciona-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.funciona-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(26, 92, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--blue);
}

.planos-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.planos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plano-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plano-nome {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.plano-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(26, 92, 255, 0.15);
  color: #7bb3ff;
  letter-spacing: 0.5px;
}
.plano-badge.destaque {
  background: rgba(26, 92, 255, 0.3);
  color: #aad0ff;
}

/* ── RESULTADOS ── */
#resultados {
  padding: 96px 0;
  background: var(--white);
}

.resultados-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.resultados-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.resultados-header h2 span {
  color: var(--blue);
}
.resultados-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* numeros */
.numeros-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.numero-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
}

.numero-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.numero-label {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}

/* depoimentos */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.depo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.depo-quote {
  font-size: 32px;
  color: var(--blue);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.4;
}

.depo-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.depo-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.depo-role {
  font-size: 12px;
  color: var(--gray-500);
}

.prints-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.prints-placeholder p {
  font-size: 14px;
  color: var(--gray-500);
}

.prints-placeholder strong {
  display: block;
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

/* ── PARA QUEM É ── */
#paraquem {
  padding: 96px 0;
  background: var(--dark);
}

.paraquem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.paraquem-content .section-label {
  color: rgba(26, 92, 255, 0.9);
}

.paraquem-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.paraquem-content h2 span {
  color: var(--blue);
}

.paraquem-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  line-height: 1.7;
}

.paraquem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paraquem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.paraquem-item:hover {
  border-color: rgba(26, 92, 255, 0.3);
}

.item-icon {
  width: 36px;
  height: 36px;
  background: rgba(26, 92, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.item-icon svg {
  color: var(--blue);
}

.paraquem-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.paraquem-item p strong {
  color: var(--white);
}

.paraquem-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.paraquem-cta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.paraquem-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
#cta-final {
  padding: 96px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.cta-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-bullet-check {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-bullet-check svg {
  width: 12px;
  height: 12px;
  color: white;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-trust {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* modal de redirecionamento */
.redirect-modal[hidden] {
  display: none;
}

.redirect-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(8px);
}

.redirect-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: var(--white);
  border: 1px solid rgba(26, 92, 255, 0.14);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.redirect-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition:
    background 0.2s,
    color 0.2s;
}

.redirect-modal__close:hover {
  background: var(--gray-200);
  color: var(--black);
}

.redirect-modal__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.redirect-modal__content h2 {
  max-width: 320px;
  margin-bottom: 12px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
}

.redirect-modal__content p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

.redirect-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.redirect-modal__cancel,
.redirect-modal__confirm {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.redirect-modal__cancel {
  background: var(--gray-100);
  color: var(--gray-700);
}

.redirect-modal__cancel:hover {
  background: var(--gray-200);
}

.redirect-modal__confirm {
  background: var(--blue);
  color: var(--white);
}

.redirect-modal__confirm:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

body.modal-open {
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand .nav-logo {
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.link-clarti-footer {
  color: var(--gray-200);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* HERO: foto como fundo */
  #hero {
    position: relative;
  }
  #hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-photo);
    background-size: cover;
    background-position: center top;
    opacity: 0.22; /* visível mas não atrapalha leitura */
    pointer-events: none;
    z-index: 0;
  }
  /* quando não há foto real, mostra um gradiente de silhueta placeholder */
  #hero.has-photo::before {
    opacity: 0.35;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  /* Card lateral some — foto vai pro background */
  .hero-photo-card {
    display: block;
  }

  .hero-stat,
  .hero-card-name,
  .hero-card-role {
    display: none;
  }

  /* Foto mobile no TOPO do hero, antes do badge/título */
  .hero-mobile-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
  .hero-mobile-photo-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(26, 92, 255, 0.5);
    object-fit: cover;
    background: linear-gradient(160deg, #1c2535 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-mobile-photo-img svg {
    opacity: 0.4;
  }
  .hero-mobile-photo-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-top: 10px;
  }
  .hero-mobile-photo-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Stats ficam em linha abaixo do conteúdo */
  .hero-mobile-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 32px;
  }
  .hero-mobile-stats .hero-stat {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 8px;
  }
  .hero-mobile-stats .hero-stat:last-child {
    border-right: none;
  }

  /* MENTOR: foto aparece acima do texto */
  .mentor-inner,
  .paraquem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }
  .mentor-photo-box {
    height: 800px;
  }
  .mentor-photo-wrap {
    display: block; /* reativa */
    order: -1; /* garante que vem antes do texto */
    max-width: 90%;
  }
  .mentor-photo-box {
    aspect-ratio: 4/3; /* mais horizontal no mobile, usa menos espaço */
  }

  .mentoria-grid,
  .numeros-row,
  .depo-grid {
    grid-template-columns: 1fr;
  }
  .como-funciona {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  #hero {
    min-height: 100svh;
    align-items: stretch;
  }

  #hero::before {
    background: var(--hero-mobile-photo) center top / cover no-repeat;
    opacity: 1;
  }

  #hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      #0a0a0a 0%,
      rgba(10, 10, 10, 0.98) 20%,
      rgba(10, 10, 10, 0.78) 40%,
      rgba(10, 10, 10, 0.28) 68%,
      rgba(10, 10, 10, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-bg-grid,
  .hero-bg-glow {
    display: none;
  }

  #hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
  }

  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 64px);
    gap: 0;
    padding: 40px 0 32px;
  }

  .hero-photo-card {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    text-align: center;
  }

  .hero-sub {
    color: rgba(255, 255, 255, 0.78);
  }

  nav .nav-cta {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding: 48px 0 56px;
  }
  #mentor,
  #mentoria,
  #resultados,
  #paraquem,
  #cta-final {
    padding: 72px 0;
  }
  .cta-bullets {
    padding: 20px;
  }
  .como-funciona {
    padding: 32px 24px;
  }
  .btn-primary {
    font-size: 15px;
    padding: 14px 24px;
  }
  .btn-white {
    font-size: 16px;
    padding: 16px 32px;
  }
  .hero-mobile-photo-img {
    width: 120px;
    height: 120px;
  }
}

/* oculta o bloco mobile em desktop */
.hero-mobile-photo,
.hero-mobile-stats {
  display: none;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {
  .hero-inner {
    min-height: calc(100svh - 64px);
    padding: 32px 0 24px;
  }
  #mentor,
  #mentoria,
  #resultados,
  #paraquem,
  #cta-final {
    padding: 72px 0;
  }
  .cta-bullets {
    padding: 20px;
  }
  .como-funciona {
    padding: 32px 24px;
  }
  .btn-primary {
    font-size: 15px;
    padding: 14px 24px;
  }
  .btn-white {
    font-size: 16px;
    padding: 16px 32px;
  }
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
