/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE PREMIUM v2 — Portal EBD 360
   CSS Moderno · Grid · Flexbox · Custom Properties · Zero Bootstrap
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Utilidades ────────────────────────────────────────────────────────── */
.hp { background: var(--ebd-bg); }

.hp-section {
  padding: 96px 0;
  position: relative;
}
.hp-section--alt { background: #fff; }
.hp-section--dark { background: var(--ebd-primary); color: #E2E8F0; }
.hp-section--dark h2 { color: #fff; }
.hp-section--dark p { color: #94A3B8; }

.hp-section__header { margin-bottom: 48px; }
.hp-section__header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ebd-primary);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.hp-section__header p {
  font-size: 17px;
  color: #64748B;
  max-width: 560px;
}
.hp-section__header--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* Badges */
.hp-badge {
  display: inline-block;
  background: rgba(197,160,89,0.12);
  color: var(--ebd-accent);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(197,160,89,0.25);
}
.hp-badge--small { font-size: 11px; padding: 4px 12px; }
.hp-badge--gold {
  background: rgba(197, 160, 89, 0.14);
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--ebd-accent);
}
.hp-hero .hp-badge--gold {
  color: #f1d6a2;
}

.hp-overline {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent);
  margin-bottom: 16px;
}

/* Botões */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.hp-btn--gold {
  background: var(--ebd-accent);
  color: var(--ebd-primary);
}
.hp-btn--gold:hover {
  background: #d4b271;
  transform: translateY(-0px);
  box-shadow: 0 8px 24px rgba(197,160,89,0.35);
}
.hp-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.hp-btn--outline:hover {
  border-color: var(--ebd-accent);
  color: var(--ebd-accent);
  background: rgba(197,160,89,0.08);
}
.hp-btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hp-btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.hp-btn--sm { padding: 8px 24px; font-size: 14px; }
.hp-btn--lg { padding: 16px 40px; font-size: 17px; }
.hp-btn--outline-dark {
  background: transparent;
  border-color: #CBD5E1;
  color: var(--ebd-primary);
}
.hp-btn--outline-dark:hover {
  border-color: var(--ebd-accent);
  color: var(--ebd-accent);
}
.hp-btn--full {
  width: 100%;
  justify-content: center;
}

/* Empty state */
.hp-empty {
  text-align: center;
  padding: 48px 24px;
  color: #94A3B8;
  font-style: italic;
  width: 100%;
}
.hp-empty--light { color: rgba(255,255,255,0.4); }

/* Thumb fallback */
.hp-thumb-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hp-thumb-fallback::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 2px, transparent 2px);
  background-size: 24px 24px;
}
.hp-thumb-fallback__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hp-thumb-fallback__inner svg {
  color: rgba(255,255,255,0.15);
}
.hp-thumb-fallback__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-body);
}
.hp-thumb-fallback--dark { background: linear-gradient(135deg, #0F172A 0%, #1A2634 100%); }

/* ─── Animações ─────────────────────────────────────────────────────────── */
.hp-anim {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hp-anim[data-anim="fade-up"]    { transform: translateY(40px); }
.hp-anim[data-anim="fade-right"] { transform: translateX(-40px); }
.hp-anim[data-anim="fade-left"]  { transform: translateX(40px); }

.hp-anim.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 1 · HERO CENTRALIZADO PREMIUM
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-hero {
  background-color: #0C1521;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #E2E8F0;
  padding: 96px 0 96px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 40, 0.82);
  z-index: 0;
}

/* Glows decorativos */
.hp-hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-glow-pulse 8s ease-in-out infinite alternate;
  z-index: 0;
}
.hp-hero__glow-2 {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.04) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-glow-pulse 10s ease-in-out infinite alternate-reverse;
  z-index: 0;
}
@keyframes hero-glow-pulse {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.hp-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hp-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hp-hero .hp-badge {
  margin-bottom: 24px;
}

.hp-hero__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -2px;
}
.hp-hero__title--serif {
  font-family: var(--font-heading);
}

.hp-hero__title-highlight {
  color: var(--ebd-accent);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(197, 160, 89, 0.20);
}

.hp-hero__desc {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 700px;
}

.hp-hero__authority-text {
  font-size: 14px;
  color: #4E637A;
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* ─── INDICADORES INSTITUCIONAIS PREMIUM ───────────────────────────────────── */
.hp-hero__stats-institutional {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 24px;
  backdrop-filter: blur(10px);
  max-width: 700px;
  width: 100%;
  justify-content: space-between;
}
.hp-inst-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  text-align: center;
}
.hp-inst-stat__num {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--ebd-accent);
  line-height: 1;
  font-family: var(--font-body);
  letter-spacing: -0.5px;
  display: block;
}
.hp-inst-stat__label {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
}
.hp-inst-stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: center;
}

/* ─── BUSCA PREMIUM (64px mínimo) ─────────────────────────────────────────── */
.hp-hero__search-form {
  margin-bottom: 48px;
  width: 100%;
  max-width: 800px;
}
.hp-hero__search-input-wrap {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 8px 8px 8px 24px;
  min-height: 72px;
  box-shadow:
    0 0 0 1px rgba(197,160,89,0.20),
    0 16px 40px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  gap: 12px;
}
.hp-hero__search-input-wrap:focus-within {
  box-shadow:
    0 0 0 3px rgba(197,160,89,0.45),
    0 16px 40px rgba(0,0,0,0.5);
}
.hp-hero__search-icon {
  color: #475569;
  flex-shrink: 0;
}
.hp-hero__search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 8px;
  font-size: 18px;
  color: var(--ebd-primary);
  outline: none;
  font-family: var(--font-body);
  font-weight: 500;
}
.hp-hero__search-input-wrap input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}
.hp-search-btn {
  min-height: 56px;
  padding: 0 32px !important;
  border-radius: 16px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  flex-shrink: 0;
  white-space: nowrap;
}
.hp-hero__search-tags {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hp-hero__search-tags span {
  font-size: 12px;
  color: #4E637A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hp-hero__search-tags a {
  font-size: 13px;
  color: #94A3B8;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 16px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.hp-hero__search-tags a:hover {
  background: rgba(197,160,89,0.15);
  border-color: rgba(197,160,89,0.3);
  color: var(--ebd-accent);
}

/* CTAs */
.hp-hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 2 · TRIMESTRE EM DESTAQUE (EDITORIAL)
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-featured-quarter {
  background: #FFFFFF;
  padding: 96px 0;
}

.hp-featured-quarter__grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: start;
}

.hp-featured-quarter__cover {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,23,42,0.15);
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-featured-quarter__cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hp-featured-quarter__overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent);
  margin-bottom: 16px;
}

.hp-featured-quarter__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--ebd-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

/* Tema do Trimestre Card */
.hp-fq-theme-card {
  position: relative;
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 35px rgba(15,23,42,0.06);
  border-top: 4px solid var(--ebd-accent);
  margin-bottom: 32px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}
.hp-fq-theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15,23,42,0.08);
}
.hp-fq-theme-card__bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  color: var(--ebd-accent);
  opacity: 0.05;
  z-index: -1;
  transform: rotate(-15deg);
}

.hp-fq-theme-card__badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(197, 160, 89, 0.15);
  color: var(--ebd-accent);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hp-fq-theme-card__title {
  font-family: var(--ebd-font-serif), serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--ebd-primary);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

.hp-fq-theme-card__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: #64748B;
  font-weight: 500;
  line-height: 1.4;
  margin: 16px 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-fq-desc-wrapper {
  margin-bottom: 32px;
  max-width: 760px;
}
.hp-featured-quarter__desc {
  font-size: 20px;
  color: #64748B;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-fq-desc-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ebd-accent);
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hp-fq-desc-more:hover {
  text-decoration: underline;
}

/* Temas Abordados */
.hp-fq-tags-block {
  margin-bottom: 40px;
}
.hp-fq-tags-title {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94A3B8;
  font-weight: 700;
  margin-bottom: 12px;
}
.hp-fq-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-fq-tag {
  background: #F8FAFC;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  cursor: default;
}
.hp-fq-tag:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--ebd-accent);
  border-color: var(--ebd-accent);
}

/* Painel Institucional da Coluna Esquerda */
.hp-fq-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.03);
  margin-top: 24px;
}

/* Resumo do Trimestre */
.hp-fq-summary {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F1F5F9;
}
.hp-fq-summary__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ebd-primary);
  font-weight: 800;
  margin-bottom: 20px;
}
.hp-fq-summary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-fq-summary__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-fq-summary__list .hp-fq-summary-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-fq-summary__text {
  display: flex;
  flex-direction: column;
}
.hp-fq-summary__label {
  font-size: 11px;
  text-transform: uppercase;
  color: #64748B;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hp-fq-summary__value {
  font-size: 15px;
  color: var(--ebd-primary);
  font-weight: 700;
}

/* Progresso Premium */
.hp-fq-progress-premium {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}
.hp-fq-progress-premium__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.hp-fq-progress-premium__percent {
  font-size: 18px;
  font-weight: 800;
  color: var(--ebd-primary);
}
.hp-fq-progress-premium__text {
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
}
.hp-fq-progress-premium__bar {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}
.hp-fq-progress-premium__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ebd-accent) 0%, #D4AF37 100%);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Jornada do Trimestre Timeline */
.hp-fq-journey__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ebd-primary);
  font-weight: 800;
  margin-bottom: 20px;
}
.hp-fq-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 8px;
}
.hp-fq-timeline-grid__item {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #E2E8F0;
  color: #94A3B8;
  background: #F8FAFC;
  cursor: default;
  transition: all 0.3s ease;
}
.hp-fq-timeline-grid__item--pub {
  background: rgba(197, 160, 89, 0.1);
  color: var(--ebd-accent);
  border-color: rgba(197, 160, 89, 0.3);
}
.hp-fq-timeline-grid__item:hover {
  transform: translateY(-0px);
  box-shadow: 0 4px 12px rgba(15,23,42,0.05);
}

/* Status das Lições */
.hp-fq-lessons-status {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.hp-fq-status-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15,23,42,0.03);
}
.hp-fq-status-card .hp-btn {
  align-self: center;
  margin-top: auto;
}
.hp-fq-status-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.hp-fq-status-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  font-weight: 700;
}
.hp-fq-status-badge {
  background: rgba(197, 160, 89, 0.15);
  color: var(--ebd-accent);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-fq-status-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ebd-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.hp-fq-status-date {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 20px;
}
.hp-fq-status-icon-badge {
  background: rgba(15, 23, 42, 0.05);
  color: #64748B;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-fq-status-icon-badge .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}
.hp-fq-status-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--ebd-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.hp-fq-status-empty-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hp-featured-quarter__actions {
  display: flex;
  gap: 16px;
}
.hp-featured-quarter__actions .hp-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 3 · EBD 360 EM NÚMEROS (EDITORIAL PREMIUM)
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-numbers-editorial {
  background: #F8F9FA;
  padding: 96px 0;
}
.hp-numbers-editorial__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.hp-numbers-editorial__header {
  text-align: center;
  margin-bottom: 32px;
}
.hp-numbers-editorial__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent, #C5A059);
  font-weight: 700;
  margin-bottom: 12px;
}
.hp-numbers-editorial__header h2 {
  font-family: var(--font-body, sans-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #1A2634;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hp-numbers-editorial__header p {
  font-size: clamp(16px, 2vw, 20px);
  color: #64748B;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hp-numbers-editorial__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.hp-numbers-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.hp-numbers-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border-color: transparent;
}

.hp-numbers-card__val {
  display: block;
  font-family: var(--ebd-font-serif), serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  color: #1A2634;
  line-height: 1;
  margin-bottom: 20px;
}

.hp-numbers-card__title {
  font-family: var(--font-body, sans-serif);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2C3E50;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hp-numbers-card__desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Divisor de Transição Premium */
.hp-numbers-editorial__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
  opacity: 0.8;
}

.hp-divider-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.4) 50%, transparent 100%);
}

.hp-divider-diamond {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--ebd-accent, #C5A059);
  transform: rotate(45deg);
  position: relative;
}

.hp-divider-diamond::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2px;
  height: 2px;
  background: var(--ebd-accent, #C5A059);
  border-radius: 50%;
}

/* Responsividade EBD 360 em Números */
@media (max-width: 1200px) {
  .hp-numbers-editorial__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-numbers-editorial {
    padding: 64px 0;
  }
  .hp-numbers-editorial__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hp-numbers-card {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hp-numbers-editorial__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 4 · CONTINUE ESTUDANDO (Jornada de Aprendizado)
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-journey {
  background: #FFFFFF;
  padding: 96px 0;
  border-top: 1px solid #F1F5F9;
}
.hp-journey__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.hp-journey__header {
  text-align: center;
  margin-bottom: 40px;
}
.hp-journey__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent, #C5A059);
  font-weight: 700;
  margin-bottom: 12px;
}
.hp-journey__header h2 {
  font-family: var(--font-body, sans-serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #1A2634;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hp-journey__header p {
  font-size: clamp(16px, 2vw, 20px);
  color: #64748B;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hp-journey__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hp-filter-btn {
  background: #F8F9FA;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hp-filter-btn:hover {
  border-color: #CBD5E1;
  color: #1A2634;
}
.hp-filter-btn.active {
  background: var(--ebd-primary, #1A2634);
  border-color: var(--ebd-primary, #1A2634);
  color: #FFFFFF;
}

.hp-journey__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  min-height: 400px;
}

/* Hidden state */
.hp-journey-item--hidden {
  display: none !important;
}

/* Base card body styles */
.hp-jitem__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.8);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.hp-jitem__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Hero Card (Destaque) */
.hp-journey-item--hero {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.hp-journey-item--hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--ebd-accent, #C5A059);
}
.hp-journey-item--hero .hp-jitem__thumb {
  position: relative;
  display: block;
  aspect-ratio: 24/9;
  background: #F8F9FA;
  overflow: hidden;
}
.hp-journey-item--hero .hp-jitem__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hp-journey-item--hero:hover .hp-jitem__thumb img {
  transform: scale(1.05);
}
.hp-journey-item--hero .hp-jitem__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hp-journey-item--hero .hp-jitem__body::before {
  content: "Conteúdo em Evidência";
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent, #C5A059);
  font-weight: 800;
  margin-bottom: 16px;
}
.hp-journey-item--hero .hp-jitem__title {
  font-size: 28px;
  font-weight: 800;
  color: #1A2634;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hp-journey-item--hero .hp-jitem__title a {
  color: inherit;
  text-decoration: none;
}
.hp-journey-item--hero .hp-jitem__title a:hover {
  color: var(--ebd-accent, #C5A059);
}
.hp-journey-item--hero .hp-jitem__excerpt {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hp-journey-item--hero .hp-jitem__btn {
  margin-top: auto;
  align-self: flex-start;
  background: var(--ebd-primary, #1A2634);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.hp-journey-item--hero .hp-jitem__btn:hover {
  background: var(--ebd-accent, #C5A059);
}

/* Secondary Cards Wrapper Container (Created by JS) */
.hp-journey-grid-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Secondary Card */
.hp-journey-item--secondary {
  display: flex;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 130px;
}
.hp-journey-item--secondary:hover {
  border-color: var(--ebd-accent, #C5A059);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transform: translateX(4px);
}
.hp-journey-item--secondary .hp-jitem__thumb {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  background: #F8F9FA;
}
.hp-journey-item--secondary .hp-jitem__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-journey-item--secondary .hp-jitem__badge {
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  font-size: 9px;
}
.hp-journey-item--secondary .hp-jitem__body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-width: 0;
}
.hp-journey-item--secondary .hp-jitem__title {
  font-size: 16px;
  font-weight: 700;
  color: #1A2634;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-journey-item--secondary .hp-jitem__title a {
  color: inherit;
  text-decoration: none;
}
.hp-journey-item--secondary .hp-jitem__title a:hover {
  color: var(--ebd-accent, #C5A059);
}
.hp-journey-item--secondary .hp-jitem__excerpt,
.hp-journey-item--secondary .hp-jitem__btn {
  display: none;
}

/* Secondary CTA inserted by JS */
.hp-journey-secondary-cta {
  display: inline-block;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--ebd-accent, #C5A059);
  text-decoration: none;
  padding: 16px 16px 8px 0;
  transition: all 0.3s ease;
  margin-top: 0;
  align-self: flex-end;
}
.hp-journey-secondary-cta:hover {
  color: #1A2634;
  transform: translateX(4px);
}

.hp-journey-item--secondary .hp-jitem__meta {
  margin-bottom: 0;
  font-size: 12px;
}

/* Explore Block */
.hp-journey__explore {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}
.hp-journey__explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ebd-primary), var(--ebd-accent));
}
.hp-journey__explore-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ebd-primary);
  margin: 0 0 -8px 0;
}
.hp-journey__explore-text {
  font-size: clamp(16px, 2vw, 20px);
  color: #64748B;
  max-width: 700px;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hp-journey__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hp-journey {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .hp-journey-item--secondary {
    flex-direction: column;
  }
  .hp-journey-item--secondary .hp-jitem__thumb {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 5 · EM DESTAQUE EDITORIAL
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-featured-editorial {
  padding: 96px 0;
  background: #FFFFFF;
}
.hp-featured-editorial__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

/* Main Card */
.hp-featured-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.hp-featured-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--ebd-accent, #C5A059);
}
.hp-ft-main__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 0;
}
.hp-ft-main__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  transition: transform 0.6s ease;
}
.hp-featured-main:hover .hp-ft-main__thumb img {
  transform: scale(1.03);
}
.hp-ft-main__thumb .hp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--ebd-primary);
  color: #fff;
}
.hp-ft-main__body {
  padding: clamp(32px, 4vw, 48px) clamp(32px, 6vw, 64px) clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.hp-ft-main__label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ebd-accent, #C5A059);
  font-weight: 800;
  margin-bottom: 0;
}
.hp-ft-main__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hp-ft-main__title a { color: var(--ebd-primary); text-decoration: none; }
.hp-ft-main__title a:hover { color: var(--ebd-accent, #C5A059); }
.hp-ft-main__excerpt {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}
.hp-ft-main__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
  margin-bottom: 24px;
}
.hp-ft-main__cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--ebd-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hp-ft-main__cta:hover {
  color: var(--ebd-accent, #C5A059);
  transform: translateX(4px);
}

/* Secondary List */
.hp-featured-secondary-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.hp-featured-secondary {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #F1F5F9;
}
.hp-featured-secondary:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.hp-featured-secondary-cta {
  padding-top: 8px;
}
.hp-ft-sec__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-ft-sec__body .hp-badge--outline {
  align-self: flex-start;
  font-size: 11px;
  padding: 6px 14px;
  min-height: 32px;
  border: 1px solid #E2E8F0;
  color: #64748B;
  border-radius: 999px;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  box-sizing: border-box;
}
.hp-ft-sec__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.hp-ft-sec__title a { color: var(--ebd-primary); text-decoration: none; }
.hp-ft-sec__title a:hover { color: var(--ebd-accent, #C5A059); }
.hp-ft-sec__excerpt {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-ft-sec__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
}
.hp-ft-sec__thumb {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #F8F9FA;
}
.hp-ft-sec__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hp-featured-secondary:hover .hp-ft-sec__thumb img {
  transform: scale(1.05);
}

/* Footer CTA */
.hp-featured-cta {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ebd-accent, #C5A059);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hp-featured-cta:hover {
  color: var(--ebd-primary);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 6 · EXPLORAR POR TEMA
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-themes {
  background-color: #F8FAFC;
  padding: 96px 0 80px;
}
.hp-themes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hp-theme-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}
.hp-theme-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-color);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.hp-theme-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hp-theme-card__icon {
  width: 64px;
  height: 64px;
  background: var(--theme-bg, #F8F9FA);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color, var(--ebd-accent));
  transition: transform 0.4s ease;
}
.hp-theme-card__icon svg {
  width: 32px;
  height: 32px;
}
.hp-theme-card:hover .hp-theme-card__icon {
  transform: scale(1.1);
}
.hp-theme-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ebd-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.hp-theme-card__desc {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}
.hp-theme-card__count {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: 100px;
}
.hp-themes__footer {
  text-align: right;
  margin-top: 40px;
}
.hp-themes-cta {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ebd-accent, #C5A059);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hp-themes-cta:hover {
  color: var(--ebd-primary);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 7 & 8 · GRID DE CARDS (Lições e Estudos)
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hp-lessons__progress {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ebd-accent, #C5A059);
  background: rgba(197, 160, 89, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
}

/* Lesson Card */
.hp-lesson-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.hp-lesson-card:hover {
  transform: translateY(-4px);
  border-color: var(--ebd-accent, #C5A059);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.hp-lesson-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.hp-lesson-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hp-lesson-card:hover .hp-lesson-card__thumb img {
  transform: scale(1.05);
}
.hp-lesson-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ebd-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 8px;
  z-index: 2;
}
.hp-lesson-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hp-lesson-card__quarter {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--ebd-accent, #C5A059);
  margin-bottom: 12px;
}
.hp-lesson-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hp-lesson-card__title a { color: var(--ebd-primary); text-decoration: none; }
.hp-lesson-card__title a:hover { color: var(--ebd-accent, #C5A059); }
.hp-lesson-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  margin-bottom: 20px;
}
.hp-lesson-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--ebd-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hp-lesson-card__cta:hover {
  color: var(--ebd-accent, #C5A059);
  transform: translateX(4px);
}

.hp-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F1F5F9;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,160,89,0.3);
}
.hp-card__thumb {
  display: block;
  overflow: hidden;
  position: relative;
  background: #F8FAFC;
}
.hp-card__thumb--revista {
  aspect-ratio: 3/4;
}
.hp-card__thumb--revista img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
  transition: transform 0.5s ease;
}
.hp-card__thumb--banner {
  aspect-ratio: 16/9;
  background: #0F172A;
}
.hp-card__thumb--banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.5s ease;
}
.hp-card:hover .hp-card__thumb img { transform: scale(1.06); }
.hp-card__lesson-num {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--ebd-accent);
  color: var(--ebd-primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}
.hp-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hp-card__meta-top { margin-bottom: 12px; }
.hp-card__date {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}
.hp-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--font-body);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-card__title a { color: var(--ebd-primary); text-decoration: none; }
.hp-card__title a:hover { color: var(--ebd-accent); }
.hp-card__excerpt {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-card__footer {
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
  margin-top: 16px;
}
.hp-card__author {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 9 · BIBLIOTECA DE RECURSOS
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-resources {
  background-color: #F8FAFC;
  padding-bottom: 96px;
}
.hp-resources__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hp-resources__header {
  max-width: 800px;
}
.hp-resources__subtitle {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
}
.hp-resources__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 24px;
}
.hp-resources__indicators span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ebd-primary);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 100px;
}
.hp-resources__indicators svg {
  color: #10B981;
}

.hp-resource-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hp-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--ebd-accent);
}
.hp-resource-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hp-resource-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(197,160,89,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ebd-accent);
  transition: transform 0.4s ease, background 0.4s ease;
}
.hp-resource-card:hover .hp-resource-card__icon {
  transform: scale(1.1);
  background: var(--ebd-accent);
  color: #fff;
}
.hp-resource-card__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.hp-resource-card__badge-highlight {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--ebd-accent);
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
.hp-resource-card__count {
  font-size: 11px;
  font-weight: 800;
  color: var(--ebd-accent);
  background: rgba(197, 160, 89, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
.hp-resource-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ebd-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.hp-resource-card__desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  flex-grow: 1;
}
.hp-resource-card__cta {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ebd-primary);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.hp-resource-card:hover .hp-resource-card__cta {
  color: var(--ebd-accent);
  transform: translateX(4px);
}

.hp-resources__footer-block {
  margin-top: 48px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}
.hp-resources__fb-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ebd-primary);
  margin-bottom: 8px;
}
.hp-resources__fb-text p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}
.hp-resources__fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--ebd-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hp-resources__fb-btn:hover {
  background: var(--ebd-accent, #C5A059);
  transform: translateY(-0px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 10 · COMENTARISTAS
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-featured-author {
  background-color: #0F172A;
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hp-fa-block {
  display: flex;
  align-items: center;
  gap: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 48px 64px;
}
.hp-fa-block__content {
  flex: 1;
}
.hp-fa-block__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ebd-accent);
  margin-bottom: 16px;
}
.hp-fa-block__name {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  line-height: 1.1;
}
.hp-fa-block__role {
  display: block;
  font-size: 20px;
  color: #94A3B8;
  margin-bottom: 32px;
  font-weight: 500;
}
.hp-fa-block__bio {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hp-fa-block__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hp-fa-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-fa-stat__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--ebd-accent);
  line-height: 1;
}
.hp-fa-stat__icon {
  color: var(--ebd-accent);
  display: flex;
}
.hp-fa-stat__label {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}
.hp-fa-block__image {
  flex-shrink: 0;
  width: 340px;
}
.hp-fa-block__image-inner {
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 4px solid rgba(197, 160, 89, 0.2);
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-fa-block__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-fa-block__image-inner svg {
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 11 · RANKING
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-ranking-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hp-ranking-item {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 2px solid #E2E8F0;
}
.hp-ranking-item--first {
  border-top-color: var(--ebd-accent);
}
.hp-ranking-item__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: #CBD5E1;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-ranking-item--first .hp-ranking-item__num {
  color: var(--ebd-primary);
}
.hp-ranking-item__badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ebd-accent);
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
}
.hp-ranking-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}
.hp-ranking-item__cat {
  color: var(--ebd-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hp-ranking-item__views {
  color: #94A3B8;
}
.hp-ranking-item__title {
  margin-bottom: 24px;
  flex: 1;
}
.hp-ranking-item__title a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--ebd-primary);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.hp-ranking-item__title a:hover {
  color: var(--ebd-accent);
}
.hp-ranking-item__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--ebd-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.hp-ranking-item__cta:hover {
  color: var(--ebd-accent);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 12 · VERSÍCULO DA SEMANA
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-verse {
  background: #0F172A;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hp-verse__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hp-verse__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-verse__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ebd-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  opacity: 0.8;
}
.hp-verse__quote {
  color: var(--ebd-accent);
  opacity: 0.2;
}
.hp-verse__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(197,160,89,0), rgba(197,160,89,0.3), rgba(197,160,89,0));
  margin: 32px auto;
}
.hp-verse__text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hp-verse__ref-wrapper {
  margin-top: 16px;
}
.hp-verse__ref {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  background: linear-gradient(135deg, #DFBE82 0%, #C5A059 100%);
  padding: 8px 24px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(197,160,89,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 13 · FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-faq {
  background-color: #F8FAFC;
}
.hp-faq .hp-section__header {
  margin-bottom: 48px;
}
.hp-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.hp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.hp-faq__item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-faq__item:hover {
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 4px 12px rgba(15,23,42,0.02);
}
.hp-faq__item.is-open {
  border-color: var(--ebd-accent);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.hp-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.hp-faq__q-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F1F5F9;
  border-radius: 10px;
  color: #64748B;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hp-faq__item.is-open .hp-faq__icon {
  background: rgba(197, 160, 89, 0.1);
  color: var(--ebd-accent);
}
.hp-faq__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--ebd-primary);
  transition: color 0.3s ease;
}
.hp-faq__item.is-open .hp-faq__text {
  color: var(--ebd-primary);
}
.hp-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #94A3B8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hp-faq__item.is-open .hp-faq__toggle {
  background: var(--ebd-accent);
  color: #fff;
  transform: rotate(180deg);
}
.hp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.hp-faq__item.is-open .hp-faq__answer {
  max-height: 500px;
}
.hp-faq__answer p {
  padding: 0 32px 32px 80px;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.hp-faq__footer {
  text-align: center;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-faq__footer h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--ebd-primary);
  margin-bottom: 8px;
}
.hp-faq__footer p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-hero__title { font-size: clamp(34px, 6vw, 48px); }
  .hp-hero__desc { max-width: 100%; padding: 0 16px; }

  .hp-featured-quarter__grid { grid-template-columns: 320px 1fr; gap: 40px; }
  .hp-featured-editorial__grid { grid-template-columns: 1fr; }
  .hp-themes__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hp-resources__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hp-section { padding: 64px 0; }
  
  /* Hero mobile */
  .hp-hero { padding: 80px 0 96px; }
  
  .hp-hero__stats-institutional {
    padding: 16px 20px;
    gap: 0;
  }
  .hp-inst-stat { min-width: 70px; padding: 4px 8px; }
  .hp-inst-stat__num { font-size: 20px; }
  .hp-inst-stat__label { font-size: 9px; }
  
  .hp-fa-stat__label { font-size: 11px; }
  .hp-fa-stat__val { font-size: 18px; }
  
  .hp-faq__question { padding: 20px; }
  .hp-faq__answer p { padding: 0 20px 24px 20px; }
  .hp-faq__q-left { gap: 12px; }
  .hp-faq__icon { width: 36px; height: 36px; }
  .hp-faq__text { font-size: 15px; }
  .hp-faq__footer { padding: 32px 24px; }
  
  .hp-hero__search-input-wrap {
    flex-direction: column;
    padding: 16px;
    border-radius: 20px;
    gap: 12px;
    min-height: auto;
  }
  .hp-hero__search-input-wrap input { padding: 8px 0; text-align: center; }
  .hp-search-btn { width: 100% !important; border-radius: 12px !important; justify-content: center; }
  .hp-hero__search-icon { display: none; }
  
  .hp-hero__ctas { flex-direction: column; }
  .hp-hero__ctas .hp-btn { width: 100%; justify-content: center; }
  
  .hp-featured-quarter { padding: 64px 0; }
  .hp-featured-quarter__grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hp-featured-quarter__cover { max-width: 320px; margin: 0 auto; }
  .hp-featured-quarter__desc { max-width: 100%; }
  
  .hp-fa-block {
    flex-direction: column;
    padding: 40px 32px;
    gap: 40px;
    text-align: center;
  }
  .hp-fa-block__image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hp-fa-block__stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    border-top: none;
    padding-top: 0;
  }
  .hp-fa-stat { justify-content: center; text-align: left; }
  .hp-featured-quarter__meta { justify-content: center; }
  .hp-fq-progress__header { flex-direction: column; gap: 8px; }
  .hp-fq-lessons-status { flex-direction: column; }
  
  .hp-ranking-list { grid-template-columns: 1fr; gap: 32px; }
  
  .hp-featured-quarter__actions { justify-content: center; flex-direction: column; }
  .hp-featured-quarter__actions .hp-btn { width: 100%; justify-content: center; }
  
  .hp-themes__grid { grid-template-columns: 1fr; }
  .hp-grid-3 { grid-template-columns: 1fr; }
  .hp-grid-4 { grid-template-columns: 1fr; }
  .hp-resources__grid { grid-template-columns: 1fr; }
  
  .hp-resources__footer-block {
    flex-direction: column;
    text-align: left;
    padding: 32px 24px;
    align-items: flex-start;
  }
  
  .hp-cta__buttons { flex-direction: column; }
  .hp-cta__buttons .hp-btn { width: 100%; justify-content: center; }
}

/* Refinamento Premium da Home */
.hp {
  --hp-space-16: 16px;
  --hp-space-24: 24px;
  --hp-space-32: 32px;
  --hp-space-48: 48px;
  --hp-space-64: 64px;
  --hp-radius-card: 24px;
  --hp-shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.06);
  --hp-shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.10);
  --hp-transition-fast: 180ms ease;
}

.hp-section {
  padding: var(--hp-space-64) 0;
}

.hp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(220px, 36vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.18), rgba(197, 160, 89, 0));
}

.hp-featured-quarter::before,
.hp-proof-social::before,
.hp-hero::before,
.hp-verse::before {
  display: none;
}

.hp-section__header {
  margin-bottom: var(--hp-space-32);
}

.hp-section__header--centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hp-section__header h2 {
  margin-bottom: 8px;
}

.hp-section__header p {
  line-height: 1.65;
}

.hp-section__header--centered p {
  margin-left: auto;
  margin-right: auto;
}

.hp-section__header--lessons {
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hp-section__header--lessons > div:first-child {
  max-width: 760px;
}

.hp-lessons__header-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hp-anim {
  transition: opacity 420ms ease, transform 420ms ease;
}

.hp-btn,
.hp-badge,
.hp-theme-card,
.hp-numbers-card,
.hp-journey-item--hero,
.hp-journey-item--secondary,
.hp-featured-main,
.hp-featured-secondary,
.hp-resource-card,
.hp-resources__fb-btn,
.hp-fa-block,
.hp-ranking-item,
.hp-faq__item {
  transition:
    transform var(--hp-transition-fast),
    box-shadow var(--hp-transition-fast),
    border-color var(--hp-transition-fast),
    background-color var(--hp-transition-fast),
    color var(--hp-transition-fast);
}

.hp-btn:hover,
.hp-resources__fb-btn:hover,
.hp-journey-item--hero:hover,
.hp-featured-main:hover,
.hp-featured-secondary:hover,
.hp-resource-card:hover,
.hp-theme-card:hover,
.hp-ranking-item:hover {
  transform: translateY(-4px);
}

.hp-btn--gold:hover,
.hp-resources__fb-btn:hover {
  background: #b8924f;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.24);
}

.hp-btn--outline:hover,
.hp-btn--outline-dark:hover,
.hp-btn--outline-light:hover {
  background: rgba(197, 160, 89, 0.08);
}

.hp-hero {
  padding: var(--hp-space-64) 0;
  min-height: 72vh;
}

.hp-hero__title {
  margin-bottom: var(--hp-space-16);
}

.hp-hero__desc {
  margin-bottom: var(--hp-space-16);
}

.hp-hero__authority-text,
.hp-hero__stats-institutional,
.hp-hero__search-form {
  margin-bottom: var(--hp-space-32);
}

.hp-hero__search-input-wrap {
  min-height: 64px;
  border-radius: 18px;
  padding: 8px 8px 8px 20px;
  transition: box-shadow var(--hp-transition-fast), transform var(--hp-transition-fast);
}

.hp-proof-social {
  position: relative;
  background: #fff;
  padding: var(--hp-space-32) 0;
}

.hp-proof-social__wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--hp-space-32);
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(197, 160, 89, 0.14);
  border-radius: 28px;
  padding: var(--hp-space-32);
  box-shadow: var(--hp-shadow-soft);
}

.hp-proof-social__intro {
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-16);
  align-items: center;
  text-align: center;
}

.hp-proof-social__stars {
  display: inline-flex;
  gap: 8px;
  color: var(--ebd-accent);
  justify-content: center;
}

.hp-proof-social__stars svg {
  width: 18px;
  height: 18px;
}

.hp-proof-social__headline {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--ebd-primary);
}

.hp-proof-social__copy {
  margin: 0 auto;
  max-width: 640px;
  color: #64748b;
  line-height: 1.7;
}

.hp-proof-social__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hp-space-16);
}

.hp-proof-social__metric {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.hp-proof-social__metric strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--ebd-primary);
  margin-bottom: 6px;
}

.hp-proof-social__metric span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

.hp-featured-quarter,
.hp-featured-editorial,
.hp-journey,
.hp-ranking,
.hp-faq {
  background: #fff;
}

.hp-numbers-editorial,
.hp-resources {
  background: #f8fafc;
}

.hp-featured-quarter,
.hp-numbers-editorial,
.hp-journey,
.hp-featured-editorial,
.hp-resources,
.hp-featured-author,
.hp-ranking,
.hp-faq {
  padding: var(--hp-space-64) 0;
}

.hp-fq-summary__list .hp-fq-summary-icon {
  font-size: 0;
  color: var(--ebd-accent);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hp-fq-summary__list .hp-fq-summary-icon svg {
  width: 20px;
  height: 20px;
}

.hp-fq-theme-card,
.hp-numbers-card,
.hp-journey-item--hero,
.hp-featured-main,
.hp-resource-card,
.hp-fa-block,
.hp-ranking-item,
.hp-faq__footer {
  box-shadow: var(--hp-shadow-soft);
}

.hp-fq-theme-card:hover,
.hp-numbers-card:hover,
.hp-resource-card:hover,
.hp-ranking-item:hover {
  box-shadow: var(--hp-shadow-hover);
}

.hp-numbers-editorial__grid {
  gap: var(--hp-space-24);
}

.hp-numbers-card {
  border-radius: var(--hp-radius-card);
  padding: var(--hp-space-32) var(--hp-space-24);
}

.hp-numbers-card:hover {
  transform: translateY(-4px);
}

.hp-numbers-card__val--placeholder {
  font-size: 24px;
  letter-spacing: 0;
  color: #94a3b8;
}

.hp-journey__header {
  margin-bottom: var(--hp-space-32);
}

.hp-journey-dashboard {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: var(--hp-space-24);
  margin-bottom: var(--hp-space-32);
  padding: var(--hp-space-32);
  border-radius: 28px;
  background: linear-gradient(140deg, #0f172a 0%, #172437 100%);
  color: #fff;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
}

.hp-journey-dashboard__main,
.hp-journey-dashboard__aside {
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-24);
}

.hp-journey-dashboard__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.16);
  border: 1px solid rgba(197, 160, 89, 0.18);
  color: #f1d6a2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hp-journey-dashboard__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: #fff;
}

.hp-journey-dashboard__text {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 620px;
}

.hp-journey-dashboard__progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-journey-dashboard__progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-journey-dashboard__progress-meta strong {
  color: #fff;
  font-size: 18px;
}

.hp-journey-dashboard__progress-meta span {
  color: #cbd5e1;
  font-size: 14px;
}

.hp-journey-dashboard__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hp-journey-dashboard__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c5a059 0%, #e8c98c 100%);
}

.hp-journey-dashboard__aside {
  justify-content: space-between;
}

.hp-journey-dashboard__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-journey-dashboard__stat-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #f1d6a2;
}

.hp-journey-dashboard__stat strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.hp-journey-dashboard__stat small {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}

.hp-journey__filters {
  margin-bottom: var(--hp-space-32);
}

.hp-filter-btn {
  padding: 10px 22px;
  transition: background-color var(--hp-transition-fast), color var(--hp-transition-fast), border-color var(--hp-transition-fast), transform var(--hp-transition-fast);
}

.hp-filter-btn:hover {
  transform: translateY(-2px);
}

.hp-journey__grid {
  gap: var(--hp-space-32);
  margin-bottom: var(--hp-space-32);
}

.hp-journey-item--hero .hp-jitem__thumb img,
.hp-featured-main:hover .hp-ft-main__thumb img,
.hp-resource-card:hover .hp-resource-card__icon,
.hp-featured-secondary:hover .hp-ft-sec__thumb img {
  transition-duration: var(--hp-transition-fast);
}

.hp-journey-item--hero .hp-jitem__thumb img,
.hp-ft-main__thumb img,
.hp-ft-sec__thumb img {
  transition: transform var(--hp-transition-fast);
}

.hp-journey-item--hero:hover .hp-jitem__thumb img,
.hp-featured-main:hover .hp-ft-main__thumb img,
.hp-featured-secondary:hover .hp-ft-sec__thumb img {
  transform: scale(1.03);
}

.hp-jitem__title a:hover,
.hp-ft-main__title a:hover,
.hp-ft-sec__title a:hover,
.hp-resource-card:hover .hp-resource-card__title,
.hp-ranking-item__title a:hover {
  color: var(--ebd-accent);
}

.hp-featured-editorial__grid {
  gap: var(--hp-space-32);
  margin-top: var(--hp-space-32);
}

.hp-ft-main__badges,
.hp-ft-sec__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hp-ft-main__badges .hp-ft-main__label,
.hp-ft-main__badges .hp-ft-main__badge-secondary,
.hp-ft-sec__eyebrow .hp-badge,
.hp-ft-sec__eyebrow .hp-ft-sec__badge {
  margin: 0;
}

.hp-ft-main__label,
.hp-ft-main__badge-secondary,
.hp-ft-sec__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  min-height: 32px;
  line-height: 1.2;
  box-sizing: border-box;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hp-ft-main__label,
.hp-ft-sec__badge {
  background: rgba(197, 160, 89, 0.12);
  color: var(--ebd-accent);
}

.hp-ft-main__badge-secondary {
  background: #eff6ff;
  color: #335d93;
}

.hp-featured-secondary {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hp-featured-secondary:hover {
  box-shadow: var(--hp-shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
}

.hp-ft-main__meta,
.hp-ft-sec__meta {
  gap: 10px;
  flex-wrap: wrap;
}

.hp-resources__grid {
  gap: var(--hp-space-24);
}

.hp-resource-card {
  border-radius: 24px;
  padding: 28px;
}

.hp-resource-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.hp-resource-card__icon svg {
  width: 26px;
  height: 26px;
}

.hp-resource-card:hover .hp-resource-card__icon {
  transform: scale(1.03);
}

.hp-resource-card__badge-highlight {
  background: rgba(197, 160, 89, 0.12);
  color: var(--ebd-accent);
  border-radius: 999px;
  padding: 6px 10px;
}

.hp-resource-card__count {
  padding: 6px 10px;
}

.hp-fa-block {
  gap: var(--hp-space-48);
  padding: var(--hp-space-48);
  border-radius: 32px;
}

.hp-fa-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hp-space-16);
}

.hp-ranking-list {
  gap: var(--hp-space-24);
}

.hp-ranking-item {
  position: relative;
  padding: 28px 28px 28px 36px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.hp-ranking-item::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.95), rgba(197, 160, 89, 0.18));
}

.hp-ranking-item__num {
  font-size: clamp(56px, 5vw, 84px);
  margin-bottom: var(--hp-space-16);
  color: rgba(15, 23, 42, 0.14);
}

.hp-ranking-item__badge {
  background: rgba(197, 160, 89, 0.12);
}

.hp-ranking-item__title {
  margin-bottom: var(--hp-space-16);
}

.hp-faq__list {
  gap: var(--hp-space-16);
}

.hp-faq__item {
  border-radius: 20px;
}

.hp-faq__answer {
  opacity: 0;
  transition: max-height var(--hp-transition-fast), opacity var(--hp-transition-fast), padding var(--hp-transition-fast);
}

.hp-faq__item.is-open .hp-faq__answer {
  opacity: 1;
}

.hp-faq__toggle {
  transition: transform var(--hp-transition-fast), background-color var(--hp-transition-fast), color var(--hp-transition-fast);
}

@media (max-width: 1024px) {
  .hp-proof-social__wrap,
  .hp-journey-dashboard,
  .hp-featured-editorial__grid {
    grid-template-columns: 1fr;
  }

  .hp-proof-social__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-journey-dashboard__aside {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hp-section,
  .hp-featured-quarter,
  .hp-numbers-editorial,
  .hp-journey,
  .hp-featured-editorial,
  .hp-resources,
  .hp-featured-author,
  .hp-ranking,
  .hp-faq {
    padding: var(--hp-space-48) 0;
  }

  .hp-hero {
    padding: 48px 0;
    min-height: auto;
  }

  .hp-proof-social {
    padding: 24px 0;
  }

  .hp-proof-social__wrap,
  .hp-journey-dashboard,
  .hp-fa-block {
    padding: 24px;
  }

  .hp-proof-social__metrics {
    grid-template-columns: 1fr;
  }

  .hp-journey-dashboard__progress-meta,
  .hp-fa-block__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-fa-block__actions .hp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Passo Final · Refinamento visual premium sem alterar estrutura */
.hp-numbers-editorial {
  padding: 88px 0 84px;
}

.hp-numbers-editorial__header {
  margin-bottom: 40px;
}

.hp-numbers-editorial__grid {
  gap: 28px;
}

.hp-numbers-card {
  min-height: 220px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(26, 38, 52, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.hp-numbers-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.78), rgba(197, 160, 89, 0));
}

.hp-numbers-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.34);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.hp-numbers-card__val {
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hp-numbers-card__title {
  margin-bottom: 10px;
  color: #1f3144;
}

.hp-numbers-card__desc {
  max-width: 20ch;
  margin: 0 auto;
  color: #5f7085;
}

.hp-journey {
  padding: 88px 0 84px;
}

.hp-journey__header {
  margin-bottom: 36px;
}

.hp-journey-dashboard {
  position: relative;
  overflow: hidden;
  gap: 28px;
  margin-bottom: 36px;
  padding: 36px;
  border: 1px solid rgba(197, 160, 89, 0.12);
  background: linear-gradient(145deg, #101b2c 0%, #172437 52%, #213048 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.2);
}

.hp-journey-dashboard::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.16) 0%, rgba(197, 160, 89, 0) 68%);
  pointer-events: none;
}

.hp-journey-dashboard__main,
.hp-journey-dashboard__aside {
  position: relative;
  z-index: 1;
}

.hp-journey-dashboard__title {
  letter-spacing: -0.03em;
}

.hp-journey-dashboard__text {
  color: #d4deea;
}

.hp-journey-dashboard__progress {
  gap: 14px;
}

.hp-journey-dashboard__progress-meta strong {
  font-size: 17px;
}

.hp-journey-dashboard__progress-meta span {
  color: #d7dfeb;
}

.hp-journey-dashboard__bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.38);
}

.hp-journey-dashboard__bar span {
  box-shadow: 0 0 18px rgba(197, 160, 89, 0.28);
}

.hp-journey-dashboard__stat {
  gap: 10px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hp-journey-dashboard__stat strong {
  font-size: 19px;
}

.hp-journey-dashboard .hp-btn,
.hp-featured-quarter__actions .hp-btn {
  min-height: 54px;
  border-radius: 999px;
  padding-inline: 28px;
}

.hp-featured-editorial {
  padding: 88px 0;
}

.hp-featured-editorial__grid {
  gap: 36px;
  margin-top: 32px;
}

.hp-featured-main {
  border-color: rgba(26, 38, 52, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.hp-featured-main:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.hp-ft-main__thumb {
  background: linear-gradient(180deg, #0f172a 0%, #243243 100%);
}

.hp-ft-main__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.06) 100%);
  pointer-events: none;
}

.hp-ft-main__body {
  padding: clamp(30px, 4vw, 42px) clamp(28px, 5vw, 40px) clamp(28px, 4vw, 36px);
}

.hp-ft-main__title {
  max-width: 14ch;
  letter-spacing: -0.03em;
}

.hp-ft-main__excerpt {
  margin-bottom: 20px;
  color: #58677a;
}

.hp-ft-main__meta {
  flex-wrap: wrap;
  row-gap: 8px;
  color: #7d8ca0;
}

.hp-featured-secondary-list {
  gap: 18px;
}

.hp-featured-secondary {
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid #e8eef5;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
  transition: transform var(--hp-transition-fast), box-shadow var(--hp-transition-fast), border-color var(--hp-transition-fast);
}

.hp-featured-secondary:hover {
  border-color: rgba(197, 160, 89, 0.26);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.hp-ft-sec__body {
  min-width: 0;
}

.hp-ft-sec__title {
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hp-ft-sec__excerpt {
  margin-bottom: 14px;
}

.hp-ft-sec__meta {
  flex-wrap: wrap;
  row-gap: 6px;
}

.hp-ft-sec__thumb {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hp-themes {
  padding: 88px 0 76px;
}

.hp-themes__grid {
  gap: 28px;
}

.hp-theme-card {
  height: 100%;
  min-height: 292px;
  padding: 34px 32px;
  border-color: rgba(26, 38, 52, 0.08);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.hp-theme-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-color), transparent 72%);
  opacity: 0.72;
}

.hp-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.08);
}

.hp-theme-card__header {
  margin-bottom: 22px;
}

.hp-theme-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.hp-theme-card__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.1;
}

.hp-theme-card__count {
  align-self: center;
  color: #516175;
  background: #f3f6fa;
}

.hp-theme-card__title {
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.hp-theme-card__desc {
  margin: 0;
  color: #607186;
}

.hp-lessons {
  padding: 88px 0 84px;
}

.hp-lessons .hp-grid-4 {
  gap: 28px;
}

.hp-lesson-card {
  height: 100%;
  border-color: rgba(26, 38, 52, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.045);
}

.hp-lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.09);
}

.hp-lesson-card__thumb {
  background: linear-gradient(180deg, #e9eef4 0%, #f8fafc 100%);
}

.hp-lesson-card__body {
  gap: 0;
  padding: 24px 24px 22px;
}

.hp-lesson-card__quarter {
  margin-bottom: 10px;
}

.hp-lesson-card__title {
  min-height: 2.7em;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-lesson-card__meta {
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
  margin-bottom: 18px;
  color: #728398;
}

.hp-lesson-card__cta {
  padding-top: 2px;
}

.hp-faq__inner {
  max-width: 860px;
}

.hp-faq__list {
  gap: 18px;
}

.hp-faq__item {
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
}

.hp-faq__item:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.hp-faq__item.is-open {
  border-color: rgba(197, 160, 89, 0.72);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.hp-faq__question {
  min-height: 72px;
}

.hp-faq__icon {
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.08);
}

.hp-faq__toggle {
  flex-shrink: 0;
}

.hp-faq__answer {
  will-change: max-height, opacity;
}

@media (max-width: 1200px) {
  .hp-numbers-card {
    min-height: 206px;
  }

  .hp-lessons .hp-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hp-featured-editorial__grid,
  .hp-journey-dashboard {
    gap: 24px;
  }

  .hp-featured-secondary {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .hp-numbers-editorial,
  .hp-journey,
  .hp-featured-editorial,
  .hp-themes,
  .hp-lessons {
    padding: 64px 0 60px;
  }

  .hp-numbers-editorial__grid,
  .hp-themes__grid,
  .hp-lessons .hp-grid-4 {
    gap: 20px;
  }

  .hp-numbers-card,
  .hp-theme-card {
    padding: 26px 22px;
  }

  .hp-journey-dashboard,
  .hp-featured-main,
  .hp-featured-secondary,
  .hp-lesson-card,
  .hp-faq__item {
    border-radius: 22px;
  }

  .hp-featured-main__body,
  .hp-ft-main__body {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 560px) {
  .hp-lessons .hp-grid-4,
  .hp-themes__grid,
  .hp-numbers-editorial__grid {
    grid-template-columns: 1fr;
  }

  .hp-featured-secondary {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .hp-ft-sec__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hp-journey-dashboard {
    padding: 24px 22px;
  }

  .hp-journey-dashboard__stat,
  .hp-lesson-card__body,
  .hp-theme-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Ajustes finos finais · alinhamento editorial e distribuição */
.hp-fq-tags-block {
  display: none !important;
}

.hp-featured-editorial .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  gap: 34px 32px;
  align-items: start;
}

.hp-featured-editorial .hp-section__header {
  grid-column: 1;
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.hp-featured-editorial .hp-section__header p {
  margin-left: 0;
  margin-right: 0;
}

.hp-featured-editorial__grid {
  grid-column: 1 / -1;
}

.hp-ft-sec__eyebrow {
  gap: 12px;
  align-items: center;
}

.hp-ft-main__badges {
  align-items: center;
}

.hp-featured-editorial .hp-badge--outline,
.hp-featured-editorial .hp-ft-main__label,
.hp-featured-editorial .hp-ft-main__badge-secondary,
.hp-featured-editorial .hp-ft-sec__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  line-height: 1.2;
  border-radius: 999px;
  vertical-align: middle;
  margin: 0;
  box-sizing: border-box;
}

.hp-badge--outline,
.hp-ft-sec__badge {
  min-height: 32px;
  line-height: 1.2;
  justify-content: center;
  margin: 0;
}

.hp-proof-social__wrap {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 58%, #f6f8fc 100%);
  border-color: rgba(197, 160, 89, 0.16);
  padding: 36px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.hp-proof-social__intro {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}

.hp-proof-social__stars {
  justify-content: flex-start;
}

.hp-proof-social__headline {
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hp-proof-social__copy {
  margin: 0;
  max-width: 600px;
}

.hp-proof-social__metric {
  padding: 24px 24px 22px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.035);
  position: relative;
  overflow: hidden;
}

.hp-proof-social__metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.72), rgba(197, 160, 89, 0));
}

.hp-proof-social__metric strong {
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hp-journey-dashboard {
  margin-bottom: 72px;
}

.hp-journey {
  padding-top: 88px;
}

.hp-journey__container {
  padding-top: 0;
}

.hp-journey__filters {
  margin-top: 0;
  margin-bottom: 42px;
}

.hp-lessons .hp-section__header--lessons {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.hp-lessons .hp-section__header--lessons > div:first-child {
  max-width: 680px;
}

.hp-lessons .hp-section__header--lessons p {
  margin-left: 0;
  margin-right: 0;
}

.hp-lessons__header-action {
  width: auto;
  justify-content: flex-end;
  flex-shrink: 0;
}

.hp-lessons .hp-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: flex-start;
}

.hp-fa-block__stats {
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
}

.hp-fa-stat {
  flex: 0 0 auto;
  min-width: 0;
}

.hp-fa-stat__label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hp-fa-stat__label br {
  display: none;
}

@media (max-width: 1200px) {
  .hp-featured-editorial .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hp-featured-editorial .hp-section__header {
    max-width: 760px;
  }

  .hp-lessons .hp-grid-4 {
    grid-template-columns: repeat(2, minmax(260px, 320px));
  }
}

@media (max-width: 1024px) {
  .hp-proof-social__wrap {
    padding: 30px;
  }

  .hp-proof-social__intro {
    align-items: center;
    text-align: center;
  }

  .hp-proof-social__stars {
    justify-content: center;
  }

  .hp-proof-social__copy {
    margin: 0 auto;
  }

  .hp-lessons .hp-section__header--lessons {
    align-items: flex-start;
  }

  .hp-lessons__header-action {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hp-journey {
    padding-top: 72px;
  }

  .hp-journey__container {
    padding-top: 0;
  }

  .hp-lessons .hp-section__header--lessons {
    margin-bottom: 32px;
  }

  .hp-lessons .hp-grid-4 {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .hp-fa-block__stats {
    gap: 20px;
  }

  .hp-fa-stat__label {
    white-space: normal;
  }
}

/* ─── Refinamento global de alinhamento e ritmo editorial ─────────────── */
.hp-resources__header.hp-section__header--centered {
  max-width: 820px;
}

.hp-resources__header.hp-section__header--centered .hp-resources__subtitle,
.hp-resources__header.hp-section__header--centered .hp-resources__indicators {
  margin-left: auto;
  margin-right: auto;
}

.hp-resources__header.hp-section__header--centered .hp-resources__indicators {
  justify-content: center;
}

.hp-themes__footer--centered {
  text-align: center;
  margin-top: 40px;
}

.hp-theme-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.hp-fa-block__actions {
  align-items: center;
}

.hp-ranking-item__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  line-height: 1.2;
  border-radius: 999px;
}

.hp-featured-secondary {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}

.hp-featured-secondary .hp-ft-sec__body {
  padding-right: 8px;
}

.hp-jitem__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  line-height: 1.2;
  border-radius: 999px;
}

.hp-lesson-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  line-height: 1.2;
  border-radius: 999px;
}
