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

.hero-restaurant {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-restaurant__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-restaurant__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-restaurant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 0;
}

.hero-restaurant__inner {
  position: relative;
  z-index: 1;
}

.hero-restaurant__content p {
  color: #f5f2ec;
}

.hero-restaurant__cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-restaurant__links {
  margin-top: var(--space-4);
}

.hero-restaurant__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.align-center-grid {
  align-items: center;
}

.convite-cta__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.convite-cta__note {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--gray-600);
  font-size: var(--font-size-sm);
}

@media (max-width: 767px) {
  .hero-restaurant {
    min-height: 60vh;
    align-items: flex-end;
    padding-bottom: var(--space-10);
  }

  .hero-restaurant__content h1 {
    font-size: 2.2rem;
  }
}
