/* ── NILO Bar & Restaurante ─────────────────────────────────────── */

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #C8A84B; }

/* Textura de fundo */
.texture-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A84B' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Linhas ornamentais */
.ornament-line {
  height: 1px;
  width: 48px;
  background: linear-gradient(to right, transparent, #C8A84B, transparent);
}

/* Scroll dot */
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #C8A84B, transparent);
  margin: 0 auto;
}

/* Tag de secção */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C8A84B;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #C8A84B;
}

/* Cards de prato */
.prato-card {
  border: 1px solid rgba(200, 168, 75, 0.12);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.prato-card:hover {
  border-color: rgba(200, 168, 75, 0.35);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(200, 168, 75, 0.25);
  color: rgba(200, 168, 75, 0.65);
  padding: 3px 10px;
}

/* Pilares da culinária */
.pilar-card {
  border: 1px solid rgba(200, 168, 75, 0.12);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.pilar-card:hover {
  border-color: rgba(200, 168, 75, 0.4);
  background: rgba(200, 168, 75, 0.04);
}

/* Fotos placeholder */
.foto-placeholder {
  background: #1A1A1A;
  border: 1px solid rgba(200, 168, 75, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  cursor: pointer;
}
.foto-placeholder:hover {
  border-color: rgba(200, 168, 75, 0.25);
}

/* Depoimentos */
.depoimento-card {
  border: 1px solid rgba(200, 168, 75, 0.12);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.depoimento-card:hover {
  border-color: rgba(200, 168, 75, 0.35);
}
