/* Tema inicial inspirado em confeitaria: ajuste fácil via variáveis */
:root {
  /* Paleta ajustada para combinar com a logo: teal/aqua e preto */
  --brand-primary: #1f8a95;   /* teal da borda */
  --brand-secondary: #111111; /* preto da tipografia */
  --brand-accent: #cfeeee;    /* aqua claro do fundo da marca */
  --bg: #f5fcfc;              /* fundo muito claro aqua */
  --text: #111111;            /* texto principal escuro (preto) */
  --white: #ffffff;
  /* Cores de Natal */
  --christmas-red: #b23a3a;
  --christmas-green: #167a4a;
  --christmas-gold: #d9a441;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 10% 0%, #eaf7f7 0%, #fff 60%),
    linear-gradient(180deg, var(--bg), #fff);
}

.page {
  min-height: 100vh;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  text-align: center;
  margin-bottom: 28px;
}
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--brand-accent);
  background-image: url('images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 4px solid var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin: 0 auto 16px;
  overflow: hidden; /* garante recorte circular da imagem interna */
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;     /* mantém a escrita completa visível */
  object-position: center; /* centraliza a marca */
  border-radius: 0;        /* recorte fica por conta do container */
  display: block;
  transform: scale(1.8);   /* ajuste fino: zoom levemente menor */
  transform-origin: center;
}
.brand-name {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 6px 0;
  color: var(--brand-secondary);
}
.brand-sub {
  margin: 0;
  color: #333333;
  font-size: 14px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
}
.btn-primary:hover { box-shadow: 0 10px 20px rgba(31,138,149,0.28); }

.btn-secondary {
  background: var(--brand-secondary);
  color: var(--white);
}
.btn-secondary:hover { box-shadow: 0 10px 20px rgba(17,17,17,0.28); }

.btn-outline {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-accent);
}

.footer {
  margin-top: 28px;
}
.social {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}
.social:hover { text-decoration: underline; }

@media (min-width: 480px) {
  .brand-name { font-size: 32px; }
}

/* ====== Cardápio ====== */
.menu { width: 100%; }
.menu-section { margin: 20px 0 8px; }
.menu-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--brand-secondary);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--brand-accent);
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.menu-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--brand-secondary);
}
.menu-item p {
  margin: 0;
  font-size: 13px;
  color: #4a4a4a;
}
.price {
  font-weight: 700;
  color: var(--brand-primary);
}
.menu-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.menu-note {
  margin: 10px 2px 0;
  font-size: 12px;
  color: #666;
}

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Galeria de fotos do cardápio */
.menu-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.photo {
  position: relative;
  background: var(--white);
  border: 2px dashed var(--brand-primary);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  aspect-ratio: 1 / 1; /* quadrado */
  overflow: hidden;
}
.photo::after {
  content: "Foto";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-primary);
  font-weight: 600;
  opacity: 0.6;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .menu-photos { grid-template-columns: repeat(4, 1fr); }
}

/* ====== Botão Natalino (simplificado) ====== */
.btn-christmas {
  background: var(--christmas-red);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 18px rgba(178,58,58,0.25);
}
.btn-christmas:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 22px rgba(178,58,58,0.28);
}