.mentoria {
  padding: 40px 0 120px;
}

.mentoria .hero {
  padding: 64px 0 56px;
  background: linear-gradient(120deg, #050505 0%, #111111 45%, #0b0b0b 100%);
  color: var(--white);
  position: relative;
}

.mentoria .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -60px 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, var(--off-white) 100%);
  pointer-events: none;
}

.mentoria .hero-grid {
  display: grid;
  gap: var(--space);
  align-items: center;
}

.mentoria .hero-copy {
  max-width: 640px;
}

.mentoria .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--green);
  margin: 0 0 16px;
  font-weight: 600;
}

.mentoria h1,
.mentoria h2,
.mentoria h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}

.mentoria h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--white);
}

.mentoria h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.mentoria h3 {
  font-size: 1.05rem;
}

.mentoria .subheadline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.mentoria .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.mentoria .hero-bullets li {
  padding-left: 26px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.mentoria .hero-bullets li::before {
  content: "•";
  color: var(--green);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.3rem;
}

.mentoria .urgency {
  background: rgba(0, 196, 108, 0.12);
  border: 1px solid rgba(0, 196, 108, 0.4);
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0;
}

.mentoria .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mentoria .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: var(--transition);
}

.mentoria .btn.primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.mentoria .btn.primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.mentoria .btn.secondary {
  background: var(--black);
  color: var(--white);
}

.mentoria .btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.mentoria .btn:focus-visible {
  outline: 3px solid rgba(0, 196, 108, 0.4);
  outline-offset: 2px;
}

.mentoria .sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  min-width: 210px;
  padding: 14px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.mentoria .hero-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mentoria .hero-card * {
  color: inherit;
}

.mentoria .hero-media {
  height: 460px;
  background: var(--gray-light);
  overflow: hidden;
}

.mentoria .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.mentoria .hero-card-content {
  padding: 20px 22px 24px;
}

.mentoria .hero-card-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.mentoria .hero-card-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mentoria .section {
  padding: 64px 0;
  background: var(--off-white);
}

.mentoria .section.alt {
  background: var(--gray-light);
}

.mentoria .section.final {
  text-align: center;
}

.mentoria .section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.mentoria .section-heading.left {
  text-align: left;
  margin: 0 0 24px;
}

.mentoria .section-heading span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--green);
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
}

.mentoria .section-heading p {
  color: var(--muted);
  margin: 0;
}

.mentoria .section-lead {
  max-width: 720px;
  color: var(--muted);
}

.mentoria .split {
  display: grid;
  gap: 32px;
}

.mentoria .list {
  padding-left: 20px;
  color: var(--muted);
}

.mentoria .grid {
  display: grid;
  gap: 20px;
}

.mentoria .cards .card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentoria .cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.mentoria .format {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mentoria .sessions {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mentoria .session {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentoria .session:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.mentoria .info-panels {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mentoria .info-panels.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mentoria .info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.mentoria .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(0, 196, 108, 0.3));
}

.mentoria .info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--black);
  font-weight: 700;
  margin-bottom: 12px;
}

.mentoria .info-card h3 {
  margin-bottom: 8px;
}

.mentoria .info-card p {
  margin: 0;
  color: var(--muted);
}

.mentoria .timeline {
  display: grid;
  gap: 16px;
}

.mentoria .timeline-item {
  display: grid;
  grid-template-columns: minmax(80px, 110px) 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.mentoria .timeline-time {
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.mentoria .timeline-body h3 {
  margin-bottom: 6px;
}

.mentoria .timeline-body p {
  margin: 0;
  color: var(--muted);
}

.mentoria .session ul {
  padding-left: 18px;
  color: var(--muted);
}

.mentoria .mentor {
  display: grid;
  gap: 32px;
  align-items: center;
}

.mentoria .mentor-highlights {
  display: grid;
  gap: 12px;
}

.mentoria .highlight {
  background: var(--green-light);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.mentoria .price {
  display: grid;
  gap: 32px;
  align-items: center;
}

.mentoria .price-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
}

.mentoria .price-box {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.mentoria .alert {
  padding: 16px 18px;
  border-radius: 12px;
  margin: 20px 0;
}

.mentoria .alert ul {
  margin: 0;
  padding-left: 20px;
}

.mentoria .alert.success {
  background: #e9f4ed;
  border: 1px solid #b4d8c2;
}

.mentoria .alert.warning {
  background: #fff2df;
  border: 1px solid #e7c7a3;
}

.mentoria .alert.error {
  background: #fde9e9;
  border: 1px solid #f3bcbc;
}

.mentoria .forms {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.mentoria .form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.mentoria .form.waitlist {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.mentoria .form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}

.mentoria .form-row.full {
  grid-column: 1 / -1;
}

.mentoria .form-row {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.mentoria .form-row label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.mentoria .form-row input,
.mentoria .form-row select,
.mentoria .form-row textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.mentoria .form-row input:focus,
.mentoria .form-row select:focus,
.mentoria .form-row textarea:focus {
  outline: 2px solid rgba(0, 196, 108, 0.35);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 196, 108, 0.12);
}

.mentoria .form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.mentoria .honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
}

.mentoria fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}

.mentoria .form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.mentoria .form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.mentoria .form-actions .btn {
  width: min(100%, 360px);
  padding: 16px 24px;
  font-size: 1.05rem;
}

@media (min-width: 880px) {
  .mentoria .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .mentoria .mentor {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .mentoria .price {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 640px) {
  .mentoria {
    padding-bottom: 136px;
  }

  .mentoria .sticky-cta {
    right: 16px;
    bottom: 14px;
    left: 16px;
    width: auto;
    min-width: 0;
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mentoria .hero-copy,
  .mentoria .hero-card,
  .mentoria .section {
    animation: fadeUp 0.6s ease both;
  }
}

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