/* ══ SABORES DO MÉXICO MODULE ═════════
   Bloco único em azul — cardápio em texto
   claro à esquerda, colagem de pratos e
   cartão-postal "soltos" sobre o fundo
   à direita, sem corte/retângulo.
═══════════════════════════════════════ */
#s-sabores {
  background: var(--blue);
  padding: 96px 0;
  overflow: hidden;
}

.sab-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

/* ── Text side ────────────────────────── */
.sab-h {
  font-family: var(--ff-serif);
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  margin: 16px 0;
}
.sab-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ── Menu list ────────────────────────── */
.sab-menu {
  display: flex;
  flex-direction: column;
}

.sab-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.sab-item:first-child { border-top: 1px solid rgba(255,255,255,.14); }

.sab-item-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.sab-item-num {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .08em;
}

.sab-item-title {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.sab-dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 2px dotted rgba(255,255,255,.25);
  margin-bottom: 6px;
}

.sab-item-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.sab-item-desc {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  max-width: 520px;
}

/* ── Closing note ─────────────────────── */
.sab-note {
  margin-top: 32px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.7);
}

/* ── Photo side ───────────────────────── */
.sab-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sab-photo img {
  display: block;
  width: 130%;
  max-width: 640px;
}
