/* ============================================= */
/* DOCENTES — Page-specific styles               */
/* ============================================= */

/* Hero eyebrow: use accent (green) instead of secondary (teal) */
.hero__eyebrow {
  color: var(--color-accent);
}
.hero__eyebrow::before {
  background: var(--color-accent);
}

/* ============================================= */
/* PLAN CARD — hero visual                       */
/* ============================================= */
.plan-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  width: 100%;
  max-width: 340px;
}

.plan-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.plan-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.plan-step:last-of-type { border-bottom: none; }

.plan-step__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.plan-step__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-step__dot--done   { background: var(--color-accent); }
.plan-step__dot--active { background: var(--color-secondary); }
.plan-step__dot--pending { background: rgba(255,255,255,0.15); }

.plan-step__connector {
  width: 1px;
  flex: 1;
  min-height: 12px;
  background: rgba(255,255,255,0.1);
  margin-top: 4px;
}

.plan-step__text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0;
}

.plan-step__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.plan-card__badge {
  margin-top: 16px;
  background: rgba(21,175,136,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-card__badge-text { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 0; }
.plan-card__badge-val  { font-size: 13px; font-weight: 700; color: var(--color-accent); margin-bottom: 0; }

/* ============================================= */
/* CÓMO FUNCIONA — dark section                  */
/* ============================================= */
.como {
  padding-block: var(--section-py);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.como::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,166,166,0.07);
  pointer-events: none;
}

.como__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .como__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
}

.como__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.como__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.como__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  text-wrap: pretty;
}

.como__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Steps list */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step:last-child { border-bottom: none; }

.step__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(21,175,136,0.15);
  border: 1.5px solid rgba(21,175,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
}

.step__connector {
  width: 1px;
  flex: 1;
  min-height: 16px;
  background: rgba(255,255,255,0.08);
  margin-top: 6px;
}

.step:last-child .step__connector { display: none; }

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.step__body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 0;
}

/* MINERD card */
.minerd-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
}

.minerd-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.minerd-card__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.minerd-card__badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(21,175,136,0.18);
  color: var(--color-accent);
  padding: 3px 10px;
  border-radius: 20px;
}

.minerd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.minerd-row:last-child { border-bottom: none; }

.minerd-row__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0,166,166,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.minerd-row__text { flex: 1; }

.minerd-row__text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.minerd-row__text span {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.minerd-row__check {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================= */
/* PRE-OBJECIÓN                                  */
/* ============================================= */
.objecion {
  padding-block: var(--section-py);
  background: var(--color-surface);
}

.objecion__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.objecion__headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.objecion__sub {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.objecion__tools {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  font-family: var(--font-base);
}

.tool-pill--strike {
  text-decoration: line-through;
  opacity: 0.5;
}

.tool-pill--highlight {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  opacity: 1;
  text-decoration: none;
}

/* ============================================= */
/* FORM — white bg override for docentes         */
/* ============================================= */
.form-section {
  background: #fff;
}
