/* ============================================================
   turnos.css — Página del sistema de turnos
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.tn-hero {
  padding-top: 160px;
  padding-bottom: 0;
  min-height: unset;
  text-align: center;
  position: relative;
  overflow: visible;
}

.tn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(116,172,223,.1);
  border: 1px solid rgba(116,172,223,.25);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.tn-tag {
  background: var(--blue);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}

.tn-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tn-demo-link {
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(116,172,223,.3);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.tn-demo-link:hover { border-color: var(--blue); }

.tn-hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-muted, rgba(255,255,255,.45));
  margin-bottom: 80px;
}
.hero-tag-dot { opacity: .35; }

.hero-mountain {
  width: 100%;
  margin-bottom: -2px;
  line-height: 0;
  margin-top: 60px;
}
.hero-mountain svg { width: 100%; display: block; }

/* ── Sections ─────────────────────────────────────────────── */
.tn-section {
  padding: 100px 0;
  background: #050B18;
}
.tn-section--dark {
  background: #07101f;
}

.tn-section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  text-align: center;
}

/* ── Features grid ────────────────────────────────────────── */
.tn-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (max-width: 1024px) {
  .tn-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tn-features-grid { grid-template-columns: 1fr; }
}

.tn-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .25s, background .25s;
}
.tn-feat:hover {
  background: rgba(116,172,223,.06);
  border-color: rgba(116,172,223,.22);
}

.tn-feat--light {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}

.tn-feat-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1;
}

.tn-feat h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tn-feat p {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ── Demo box ─────────────────────────────────────────────── */
.tn-demo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(116,172,223,.08);
  border: 1px solid rgba(116,172,223,.2);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.tn-demo-box--dark {
  background: rgba(116,172,223,.05);
  border-color: rgba(116,172,223,.15);
}

.tn-demo-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 8px;
}

.tn-demo-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.tn-demo-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.6;
  max-width: 440px;
}

.tn-demo-cta {
  white-space: nowrap;
  background: var(--blue);
  color: #050B18;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.tn-demo-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── Precios ──────────────────────────────────────────────── */
.tn-precios {
  background: #050B18;
  padding: 100px 0;
}

.s-title-dk {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 0;
  text-align: center;
}

.tn-precios-desc {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}

.tn-planes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (max-width: 860px) {
  .tn-planes { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.tn-plan {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.tn-plan--featured {
  background: rgba(116,172,223,.07);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(116,172,223,.12);
}

.tn-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #050B18;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.tn-plan-head { margin-bottom: 28px; }

.tn-plan-name {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}

.tn-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.tn-plan-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.tn-plan-per {
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.tn-plan-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.5;
}

.tn-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.tn-plan-list li {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.tn-plan-list li::first-letter {
  color: var(--blue);
  font-weight: 700;
}

.tn-plan-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  margin-top: auto;
}
.tn-plan-btn:hover { background: rgba(255,255,255,.1); }

.tn-plan-btn--featured {
  background: var(--blue);
  border-color: var(--blue);
  color: #050B18;
}
.tn-plan-btn--featured:hover { background: #8fc0e8; border-color: #8fc0e8; }

.tn-planes-note {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  margin-top: 32px;
}

/* ── Section head ─────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 0; }

.s-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}

.s-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}

/* ── CTA hero button ──────────────────────────────────────── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.35); }
.hero-cta-icon { width: 22px; height: 22px; flex-shrink: 0; }
.hero-cta strong { display: block; font-size: .95rem; }
.hero-cta small { display: block; font-size: .75rem; opacity: .85; font-weight: 400; }
