/* Hero */
.hero {
  padding: 1.5rem 1rem;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;

  /* Height */
  min-height: calc(100svh - 100px);

  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 36, 0.1);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-white);
  font-family: var(--font-accent);
  text-align: center;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  text-align: center;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.hero .actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.hero .actions .btn {
  margin-left: auto;
  margin-right: auto;
}
