/* ================================================
   PAPITO'S PRIME — inicio.css
   Estilos exclusivos da página inicial (landing page)
   Depende de: base.css (via Google Fonts do próprio HTML)
   ================================================ */

/* ---------- FONTES ESPECÍFICAS DA LANDING ----------
   A landing usa fontes diferentes do flipbook          */
:root {
  --preto:    #0A0806;
  --dourado:  #C9A84C;
  --dourado2: #E8C96A;
  --brasa:    #D4521A;
  --brasa2:   #F07340;
  --creme:    #F2E8D5;
  --cinza:    #7A6E64;
  --ff-d: 'Bebas Neue', sans-serif;
  --ff-s: 'Cormorant Garamond', serif;
  --ff-b: 'DM Sans', sans-serif;
}

/* ---------- RESET (landing é standalone) ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-size: 16px; }

body {
  background: var(--preto);
  color: var(--creme);
  font-family: var(--ff-b);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Grade sutil de fundo */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Brilho central */
body::after {
  content: '';
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== WRAPPER ===== */
.wrapper {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  width: 100%; max-width: 860px;
  margin: auto;
}

/* ===== LOGO ===== */
.logo-wrap {
  display: flex; flex-direction: column; align-items: center;
  animation: fadeUp .8s ease both;
}

.logo-img {
  width: min(200px, 55vw);
  filter: drop-shadow(0 0 24px rgba(201,168,76,.25));
}

.logo-linha {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, rgba(201,168,76,.6), transparent);
  margin-top: 20px;
}

/* ===== TÍTULO ===== */
.titulo-wrap {
  text-align: center;
  animation: fadeUp .8s .1s ease both;
}

.titulo {
  font-family: var(--ff-d);
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: 6px; line-height: .95;
}

.titulo span { color: var(--dourado); }

.subtitulo {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--cinza);
  margin-top: 10px;
  letter-spacing: 1px;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  animation: fadeUp .8s .2s ease both;
}

.card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(201,168,76,.15);
  min-height: 280px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.5);
}

/* fundo */
.card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s ease;
}

.card:hover .card-bg { transform: scale(1.03); }

/* overlay */
.card-overlay { position: absolute; inset: 0; }

/* --- Card Pizzaria --- */
.card-pizzaria .card-bg {
  background: linear-gradient(135deg, #1a1008 0%, #0f0a06 100%);
}

.card-pizzaria .card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(10,8,6,.95) 100%);
}

.card-pizzaria { border-color: rgba(201,168,76,.25); }

/* --- Card Restaurante --- */
.card-restaurante .card-bg {
  background: linear-gradient(135deg, #0e1208 0%, #080e05 100%);
}

.card-restaurante .card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(8,10,5,.95) 100%);
}

.card-restaurante { border-color: rgba(212,82,26,.25); }

.card-restaurante.fechado {
  opacity: .55;
  cursor: default;
  filter: saturate(0.4);
}

.card-restaurante.fechado:hover { transform: none; box-shadow: none; }

.card-pizzaria.fechado {
  opacity: .55;
  cursor: default;
  filter: saturate(0.4);
}

.card-pizzaria.fechado:hover { transform: none; box-shadow: none; }
.card-pizzaria.fechado .card-tag { color: var(--cinza); }
.card-pizzaria.fechado .card-cta { display: none; }

/* --- Conteúdo do card --- */
.card-content {
  position: relative; z-index: 1;
  height: 100%; min-height: 280px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  gap: 10px;
}

/* Ícone decorativo */
.card-icone {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 56px;
  opacity: .12;
  line-height: 1;
  transition: opacity .3s;
}

.card:hover .card-icone { opacity: .18; }

/* Badge status */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-d); font-size: 10px; letter-spacing: 2.5px;
  padding: 5px 12px; border-radius: 2px;
  width: fit-content; margin-bottom: 4px;
}

.badge-sempre  { background: rgba(201,168,76,.15); color: var(--dourado); border: 1px solid rgba(201,168,76,.3); }
.badge-aberto  { background: rgba(72,210,80,.18);  color: #5EE86A;       border: 1px solid rgba(72,210,80,.45); }
.badge-fechado { background: rgba(212,82,26,.15);   color: #E88A5A;       border: 1px solid rgba(212,82,26,.35); }

.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  animation: piscar 1.5s ease-in-out infinite;
}

@keyframes piscar { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.badge-fechado .badge-dot { animation: none; }

/* Tags e descrições */
.card-tag {
  font-family: var(--ff-d);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 3px; line-height: 1;
}

.card-pizzaria .card-tag     { color: var(--dourado); }
.card-restaurante .card-tag  { color: #8AC87A; }
.card-restaurante.fechado .card-tag { color: var(--cinza); }

.card-desc {
  font-family: var(--ff-s); font-style: italic;
  font-size: 14px; color: rgba(242,232,213,.5);
  line-height: 1.4;
}

.card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-d); font-size: 12px; letter-spacing: 2px;
  color: var(--creme); margin-top: 4px;
  transition: gap .2s;
}

.card:hover .card-cta { gap: 14px; }
.card-restaurante.fechado .card-cta { display: none; }

.horario-aviso {
  font-size: 12px; color: var(--cinza);
  display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
}

/* Divisor decorativo */
.card-divisor {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: .3;
}

.card-pizzaria .card-divisor    { color: var(--dourado); }
.card-restaurante .card-divisor { color: #8AC87A; }

/* ===== RODAPÉ INFO ===== */
.info {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  animation: fadeUp .8s .35s ease both;
}

.info-linha {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent);
}

.info-itens {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}

.info-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--cinza); letter-spacing: .5px;
}

.info-item a {
  color: var(--cinza); text-decoration: none; transition: color .2s;
}

.info-item a:hover { color: var(--dourado); }

/* WhatsApp */
.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366;
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: 4px;
  text-decoration: none;
  transition: all .25s;
}

.btn-wpp:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.5);
}

.btn-wpp svg { flex-shrink: 0; }

/* ===== HORÁRIOS NO RODAPÉ ===== */
.info-horarios {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 16px;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.10);
  border-radius: 6px;
  width: 100%; max-width: 380px;
}
.info-horario-titulo {
  font-family: var(--ff-d); font-size: 13px;
  letter-spacing: 2px; color: var(--dourado);
  text-align: center; margin-bottom: 4px;
}
.info-horario-linha {
  display: flex; justify-content: space-between;
  align-items: center; gap: 8px; font-size: 12px;
}
.info-hr-label { color: var(--creme); font-weight: 500; white-space: nowrap; }
.info-hr-valor { color: var(--cinza); text-align: right; font-size: 11px; }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 16px;
  font-family: var(--ff-s); font-style: italic;
  font-size: 12px; color: rgba(122,110,100,.4);
  border-top: 1px solid rgba(201,168,76,.06);
  width: 100%; margin-top: auto;
}

/* ===== ANIMAÇÃO ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; gap: 12px; }
  .card-content { min-height: 200px; padding: 22px 20px; }
  .wrapper { gap: 32px; padding: 28px 16px; }
  .info-itens { gap: 16px; }
}