/* Hero — seção principal com proposta de valor */
.hero {
  background: var(--green);
  color: white;
  padding: 84px 40px 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.1), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,.12), transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border-radius: var(--radius-round);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 22px;
}

.hero-badge .novo {
  background: white;
  color: var(--green);
  padding: 3px 8px;
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

/* Display visual do hero. O H1 semântico fica em .sr-only acima,
   carregando a palavra-chave principal ("Clube Vestcasa"). Este bloco
   é só visual — daí o aria-hidden no HTML. */
.hero .hero-display {
  font-family: var(--font-display);
  font-size: 92px;
  line-height: .9;
  letter-spacing: -3px;
  font-weight: 700;
  margin: 0;
}
.hero .hero-display em { font-style: italic; font-weight: 400; }

.hero .stripe-line { margin-top: 18px; max-width: 380px; }
.hero .stripe-line .rainbow { height: 8px; border-radius: 2px; overflow: hidden; }

.hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  opacity: .95;
  max-width: 540px;
  margin-top: 22px;
}

.hero .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
}
.hero .price-row .label { font-size: 13px; opacity: .85; }
.hero .price-row .val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.hero .cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero .trust {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: .75;
  margin: 18px 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 540px;
}
.hero-stats > div {
  text-align: center;
  padding: 4px 12px;
  position: relative;
}
.hero-stats > div + div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,.18);
}
.hero-stats .n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  color: white;
  margin: 0;
}
.hero-stats .l {
  font-size: 10.5px;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 10px 0 0;
  font-weight: 500;
}


/* Cartão dos planos (lado direito do hero) */
.hero-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.hero-card > .rainbow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

.hero-card .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink2);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 8px;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.hero-card .plan-list { display: grid; gap: 8px; }
.hero-card .plan {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: transparent;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.hero-card .plan:hover { transform: translateX(2px); border-color: var(--green); }
.hero-card .plan.alt { background: var(--paper); }
.hero-card .plan.hl { background: var(--green); color: white; border: 0; }
.hero-card .plan.hl:hover { background: var(--green-hover); }
.hero-card .plan.dark {
  background: linear-gradient(135deg, #353d35 0%, #232a23 100%);
  color: white;
  border: 0;
}
.hero-card .plan.dark .plan-tag { color: rgba(255,255,255,.72); }
.hero-card .plan.dark:hover {
  background: linear-gradient(135deg, #3e463e 0%, #2a322a 100%);
  transform: translateX(2px);
  border-color: transparent;
}

.hero-card .plan-name { font-weight: 700; font-size: 13px; }
.hero-card .plan-tag { font-size: 10.5px; opacity: .7; margin-top: 1px; }

.hero-card .plan-bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.hero-card .plan-bullets li {
  font-size: 10.5px;
  line-height: 1.35;
  opacity: .72;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero-card .plan-bullets li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .9;
}
.hero-card .plan-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.hero-card .plan-period {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  opacity: .65;
  margin-left: 2px;
  letter-spacing: 0;
}

.hero-card .cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  background: var(--green);
  color: white;
  border: 0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background var(--transition-fast);
}
.hero-card .cta:hover { background: var(--green-hover); }
