html, body {
  background-color: var(--color-bg);
}

.hero--poker {
  min-height: 80vh;
}

.poker-hero__content {
  max-width: 640px;
}

.poker-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 36rem;
}

.poker-hero__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-section-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-media-card__inner {
  padding: var(--space-4);
}

.poker-media-card__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-steps-grid {
  align-items: stretch;
}

.poker-section-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.poker-step-card {
  height: 100%;
}

.poker-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.poker-step-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.poker-step-list__number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-family: var(--font-display);
  background: radial-gradient(circle at top, #ffe68f, var(--color-primary));
  color: #151515;
  box-shadow: var(--shadow-soft);
}

.poker-step-list__content h4 {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-md);
  text-transform: none;
  letter-spacing: 0.02em;
}

.poker-step-list__content p {
  margin-bottom: 0;
}

.poker-info-card {
  height: 100%;
}

.poker-staff-image {
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 196, 66, 0.2);
}

.poker-testimonial-card blockquote {
  margin: 0;
}

.poker-testimonial-card p {
  margin-bottom: var(--space-3);
}

.poker-testimonial-author {
  font-weight: 600;
  color: var(--color-primary-strong);
}

.poker-testimonial-note {
  font-size: var(--font-size-sm);
}

.poker-reserva {
  background: radial-gradient(circle at top, rgba(245, 196, 66, 0.05), transparent 55%),
              var(--color-bg-alt);
}

.poker-form {
  padding: var(--space-5);
}

.poker-faq-header {
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.poker-faq-header p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hero--poker {
    min-height: 70vh;
  }

  .poker-hero__content {
    text-align: left;
  }

  .poker-hero__cta {
    justify-content: flex-start;
  }

  .poker-form {
    padding: var(--space-4);
  }
}
