.hero-restaurante {
  background: radial-gradient(circle at top left, rgba(182, 138, 58, 0.15), transparent 55%);
}

.hero-restaurante-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-32);
  align-items: center;
}

@media (max-width: 767px) {
  .hero-restaurante-inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-64);
    padding-bottom: var(--space-40);
  }
}

.hero-restaurante-content {
  max-width: 32rem;
}

.hero-restaurante-cta {
  margin-top: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.hero-restaurante-badge {
  margin-top: var(--space-16);
}

.hero-restaurante-media {
  justify-self: center;
}

.hero-restaurante-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
}

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

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

.restaurante-intro-card .card {
  height: 100%;
}

.restaurante-bullets {
  list-style: none;
  padding-left: 0;
}

.restaurante-bullets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.restaurante-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-primary-dark) 65%);
}

.restaurante-intro-ctas {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.restaurante-figure-interior,
.restaurante-figure-chef {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-md);
  background: var(--color-surface);
}

.restaurante-figure-interior img,
.restaurante-figure-chef img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.restaurante-figure-interior figcaption,
.restaurante-figure-chef figcaption {
  padding: var(--space-16);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.restaurante-ambiente-grid .card {
  height: 100%;
}

.restaurante-servico-grid,
.restaurante-chef-grid,
.restaurante-qualidade-grid {
  align-items: center;
}

.restaurante-qualidade-ctas {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.restaurante-stats .card {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

@media (max-width: 767px) {
  .restaurante-stats .card {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}
