html, body {
  background-color: transparent;
}

.hero--restaurante .hero-description {
  margin-top: var(--space-3);
}

.section-header {
  margin-bottom: var(--space-4);
}

.restaurante-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurante-content--highlight {
  background: var(--color-surface-soft);
  border-radius: var(--radius-cloud);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.restaurante-image-wrapper {
  position: relative;
  max-width: 32rem;
  margin-inline: auto;
}

.restaurante-figure {
  overflow: hidden;
}

.restaurante-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.restaurante-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.restaurante-list--chips {
  flex-direction: row;
  flex-wrap: wrap;
}

.restaurante-card {
  height: 100%;
}

.cloud-shape--one {
  width: 120px;
  height: 120px;
  top: -30px;
  left: -40px;
}

.cloud-shape--two {
  width: 150px;
  height: 150px;
  bottom: -40px;
  right: -30px;
}

.cloud-shape--three {
  width: 140px;
  height: 140px;
  top: -20px;
  right: -50px;
}

@media (max-width: 767px) {
  .restaurante-content--highlight {
    margin-top: var(--space-4);
  }
}

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