/* Tipografia refinada */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1px;
}

h1 {
  font-weight: 300;
}

.navbar a {
  font-size: 0.875rem; /* text-sm */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #ef4444; /* hover:text-red-500 */
}

/* Botões centrais estilo card */
.icon-button {
  width: 144px; /* w-36 */
  height: 144px; /* h-36 */
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transition: all 0.3s ease;
}

.icon-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Botão destaque (Delivery) */
.btn-delivery {
  background-color: #dc2626; /* red-600 */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: background 0.3s ease;
}

.btn-delivery:hover {
  background-color: #b91c1c; /* red-700 */
}

/* Título com linha */
.section-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #dc2626;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Fundo com overlay escuro se quiser usar imagem */
.bg-dark-overlay {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.bg-dark-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.bg-dark-overlay > * {
  position: relative;
  z-index: 10;
}
