/* HERO BLOCK */
.hero {
  padding: 8rem 1rem 5rem;
  color: white;
}

.hero--gradient {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 12rem 1rem 10rem;
  }
}

.hero__container {
  max-width: 80rem;
  margin: 0 auto;
}

.hero__content {
  max-width: 48rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__description {
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero__description {
    font-size: 1.25rem;
  }
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__badge {
  margin-top: 1rem;
}

/* BUTTON BLOCK */
.button {
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: scale(1.05);
}

.button--primary {
  background-color: #399b6a;
}

.button--primary:hover {
  background-color: #2d7a52;
}

.button--accent {
  background-color: #e69138;
}

.button--accent:hover {
  background-color: #c97e2e;
}

/* BADGE BLOCK */
.badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 32rem;
}

.badge__icon {
  font-size: 2.25rem;
  color: #399b6a;
}

.badge__text {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}