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

.restaurante-hero {
  position: relative;
}

.restaurante-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.restaurante-hero__eyebrow {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.restaurante-hero__intro {
  font-size: var(--fs-lg);
  max-width: 36rem;
}

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

.restaurante-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.restaurante-hero__image-wrapper {
  max-width: 32rem;
  margin-inline: auto;
}

.restaurante-hero__figure {
  overflow: hidden;
}

.restaurante-hero__figure img {
  border-radius: var(--radius-xl);
}

.restaurante-hero__figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.restaurante-section {
  position: relative;
}

.restaurante-section__grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.restaurante-section__grid--reverse {
  display: grid;
}

@media (min-width: 768px) {
  .restaurante-section__grid--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurante-section__grid--reverse > :first-child {
    order: 2;
  }

  .restaurante-section__grid--reverse > :last-child {
    order: 1;
  }
}

.restaurante-section__card,
.restaurante-section__highlights,
.restaurante-section__cta,
.restaurante-section__pillars {
  height: 100%;
}

.restaurante-list {
  display: grid;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}

.restaurante-link {
  margin-top: var(--space-4);
}

.restaurante-section--ambiente {
  background: radial-gradient(circle at top, rgba(196, 181, 253, 0.18), transparent 55%);
}

.restaurante-section--servicio {
  background: radial-gradient(circle at bottom, rgba(252, 165, 165, 0.16), transparent 55%);
}

.restaurante-section--ambientes {
  background: radial-gradient(circle at center, rgba(129, 230, 217, 0.16), transparent 60%);
}

.restaurante-section__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.restaurante-ambiente__figure img {
  border-radius: var(--radius-xl);
}

.restaurante-ambiente__figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.restaurante-valores__container {
  padding: var(--space-6);
}

.restaurante-valores__header {
  max-width: 40rem;
  margin-bottom: var(--space-4);
}

.restaurante-valores__grid {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .restaurante-valores__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.restaurante-valores__item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}

.restaurante-valores__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .restaurante-hero__grid {
    text-align: left;
  }

  .restaurante-hero__image-wrapper {
    margin-top: var(--space-6);
  }
}
