@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lora:wght@400;500&family=DM+Mono:wght@400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #5C3317;
  --gold: #D4A017;
  --cream: #FFF8EC;
  --terra: #C1440E;
  --mid: #8B6914;
  --light-gold: #F7E8C0;
}

body {
  font-family: 'Lora', serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ========================
   NAVBAR
======================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--light-gold);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-wpp {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 500 !important;
  opacity: 1 !important;
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 88vh;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 6px 18px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  line-height: 1.1;
  animation: fadeUp 0.7s 0.1s ease both;
  max-width: 700px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  color: rgba(255, 248, 236, 0.65);
  font-size: 1.05rem;
  margin: 1.5rem 0 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown);
  border: none;
  padding: 14px 30px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.15s, background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #E8B520;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.35);
  padding: 14px 30px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 0.7s 0.5s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

.scroll-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.6;
  text-transform: uppercase;
}

/* ========================
   SECTION BASE
======================== */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-inner-wide {
  max-width: 960px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brown);
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

/* ========================
   DIFERENCIAIS
======================== */
.diferenciais {
  background: white;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.dif-card {
  border: 1px solid var(--light-gold);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  background: white;
}

.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92, 51, 23, 0.1);
}

.dif-icon {
  width: 48px;
  height: 48px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.dif-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.dif-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.dif-card p {
  font-size: 0.92rem;
  color: #7A5C40;
  line-height: 1.65;
}

/* ========================
   CARDÁPIO
======================== */
.cardapio {
  background: var(--cream);
}

.cardapio-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.filtros {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filtro-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid rgba(92, 51, 23, 0.25);
  background: transparent;
  color: var(--brown);
  transition: all 0.2s;
}

.filtro-btn.ativo {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.filtro-btn:hover:not(.ativo) {
  border-color: var(--gold);
  color: var(--gold);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.produto-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(92, 51, 23, 0.12);
}

.produto-img {
  height: 140px;
  background: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.produto-emoji {
  font-size: 52px;
  line-height: 1;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
}

.badge-hot { background: var(--terra); color: white; }
.badge-new { background: var(--brown); color: var(--gold); }
.badge-fav { background: var(--gold); color: var(--brown); }

.produto-info {
  padding: 1.1rem;
}

.produto-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.produto-desc {
  font-size: 0.8rem;
  color: #9B7A58;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.produto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.produto-preco {
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  color: var(--terra);
  font-weight: 500;
}

.btn-pedir {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 12px;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-pedir:hover {
  background: var(--gold);
  color: var(--brown);
}

/* ========================
   DEPOIMENTOS
======================== */
.depoimentos {
  background: var(--brown);
  color: var(--cream);
}

.depoimentos .section-tag { color: var(--gold); }
.depoimentos .section-title { color: var(--cream); }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.dep-card {
  background: rgba(255, 248, 236, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
}

.dep-aspas {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.5;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  user-select: none;
}

.dep-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 248, 236, 0.8);
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
}

.dep-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  flex-shrink: 0;
}

.dep-nome {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.dep-estrelas {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ========================
   LOCALIZAÇÃO
======================== */
.localizacao {
  background: white;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.loc-mapa {
  background: var(--light-gold);
  border-radius: 8px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.loc-mapa svg {
  width: 60px;
  height: 60px;
  stroke: var(--brown);
  opacity: 0.35;
  fill: none;
}

.mapa-texto {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-item-icon {
  width: 36px;
  height: 36px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.loc-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.loc-val {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--brown);
}

/* ========================
   CTA FINAL
======================== */
.cta-final {
  background: var(--gold);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--brown);
  max-width: 540px;
  margin: 0 auto 0.75rem;
  line-height: 1.15;
}

.cta-final p {
  color: rgba(92, 51, 23, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-wpp-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.btn-wpp-big:hover {
  transform: scale(1.03);
}

.wpp-dot {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #3A1F0B;
  color: rgba(255, 248, 236, 0.55);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 248, 236, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 248, 236, 0.55);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 160, 23, 0.12);
  padding-top: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ========================
   BOTÃO FLUTUANTE WHATSAPP
======================== */
.float-wpp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  animation: wppPulse 2s infinite;
}

.float-wpp svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ========================
   ANIMAÇÕES
======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ========================
   RESPONSIVO
======================== */
@media (max-width: 700px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hide-mob {
    display: none;
  }
}
