/* ═══════════════════════════════════════════════════════════════
   Vestibular — Página de índice (/vestibular)
   Depende de: variables.css, bundle.min.css, static-pages.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Layout (alinhado com res-layout do site) ────────────────── */
.vestibular-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.vestibular-hero {
  margin-bottom: 32px;
}

.vestibular-hero__breadcrumb {
  font-size: var(--font-sm, 0.875rem);
  color: var(--color-text-muted, #6e6e73);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 500;
}

.vestibular-hero__breadcrumb a {
  color: var(--color-text-muted, #6e6e73);
  text-decoration: none;
  transition: color 0.2s;
}

.vestibular-hero__breadcrumb a:hover {
  color: var(--color-primary, rgb(0, 92, 222));
  text-decoration: underline;
}

.vestibular-hero__title {
  font-size: var(--font-3xl, 2rem);
  font-weight: 700;
  margin: 0 0 var(--space-4, 1rem);
}

.vestibular-hero__sub {
  font-size: var(--font-lg, 1.125rem);
  color: var(--color-text-muted, #6e6e73);
  max-width: 600px;
  margin: 0;
}

/* ── Swiper de anos ──────────────────────────────────────────── */
.vestibular-years-wrap {
  margin-bottom: 48px;
}

.vestibular-years-wrap__title {
  font-size: var(--font-xl, 1.25rem);
  font-weight: 700;
  margin: 0 0 6px;
}

.vestibular-years-wrap__sub {
  font-size: var(--font-sm, 0.875rem);
  color: var(--color-text-muted, #6e6e73);
  margin: 0 0 20px;
}

.vestibular-years-swiper {
  padding-bottom: 36px !important;
  overflow: hidden;
  --swiper-pagination-color: var(--color-primary, rgb(0, 92, 222));
  --swiper-theme-color: var(--color-primary, rgb(0, 92, 222));
}

/* ── Cards de ano (padrão eq-year-card do site) ─────────────── */
.vstb-year-card {
  display: block;
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.vstb-year-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.vstb-year-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.30) 55%,
    transparent 100%);
  border-radius: inherit;
}

.vstb-year-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vstb-year-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.vstb-year-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-primary, rgb(0, 92, 222));
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.vstb-year-card__year {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.vstb-year-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 6px;
}

/* ── Seção editorial ─────────────────────────────────────────── */
.vestibular-editorial {
  margin-bottom: 48px;
}

.vestibular-editorial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.vestibular-editorial__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.vestibular-editorial__card h2 {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px;
}

.vestibular-editorial__card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 8px;
}

.vestibular-editorial__card p:last-child {
  margin-bottom: 0;
}

.vestibular-editorial__card ul,
.vestibular-editorial__card ol {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  padding-left: 18px;
  margin: 0 0 8px;
}

/* ── Seção FAQ ───────────────────────────────────────────────── */
.vestibular-faq {
  margin-bottom: 48px;
}

.vestibular-faq__heading {
  font-size: 22px;
  font-weight: 700;
  color: #1a2535;
  margin: 0 0 24px;
}

.vestibular-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.vestibular-faq__item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.vestibular-faq__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px;
}

.vestibular-faq__item p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .vestibular-layout {
    padding: 24px 16px 60px;
  }

  .vstb-year-card {
    height: 180px;
  }

  .vstb-year-card__year {
    font-size: 28px;
  }
}
