:root {
  --amarelo: #F5C400;
  --amarelo-escuro: #D4A800;
  --vermelho: #C8373A;
  --vermelho-escuro: #A02628;
  --marrom: #5C2E0E;
  --laranja: #E86820;
  --verde: #2E7D32;
  --creme: #FFF8EC;
  --branco: #FFFFFF;
  --cinza-claro: #F9F5EE;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--creme);
  color: var(--marrom);
  overflow-x: hidden;
}

/* ─── FUNDO TEXTURA ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(245,196,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(200,55,58,0.07) 0%, transparent 50%);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: var(--vermelho);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  padding: 0.6rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 56px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.nav-links { display: flex; gap: 0.3rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--branco);
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 0.45rem 1rem; border-radius: 2rem;
  transition: background 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.2); }
.nav-links .btn-pedido {
  background: var(--amarelo); color: var(--marrom);
  border-radius: 2rem; padding: 0.5rem 1.2rem;
  font-weight: 800;
}
.nav-links .btn-pedido:hover { background: var(--amarelo-escuro); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(160deg, #FFF3CC 0%, #FFE5B4 40%, #FFD580 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding-left: 5rem; padding-right: 3rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--creme);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* bolinhas decorativas */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.deco1 { width: 300px; height: 300px; background: var(--vermelho); top: -80px; right: -80px; }
.deco2 { width: 150px; height: 150px; background: var(--laranja); bottom: 100px; left: -40px; }

.hero-text { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--vermelho); color: var(--branco);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 1.1rem;
  border-radius: 2rem; margin-bottom: 1.2rem;
  box-shadow: 0 3px 10px rgba(200,55,58,0.4);
}
.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05; color: var(--marrom);
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 0 rgba(245,196,0,0.6);
}
.hero h1 span { color: var(--vermelho); }
.hero p {
  font-size: 1.1rem; line-height: 1.75; color: #6B3A20;
  max-width: 480px; margin-bottom: 2rem; font-weight: 600;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-whats {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: var(--branco);
  padding: 0.9rem 1.8rem; border-radius: 3rem;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 7px 24px rgba(37,211,102,0.55); }
.btn-whats svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.btn-cardapio {
  display: inline-flex; align-items: center;
  background: var(--vermelho); color: var(--branco);
  padding: 0.9rem 1.8rem; border-radius: 3rem;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 18px rgba(200,55,58,0.4);
  transition: transform 0.2s;
}
.btn-cardapio:hover { transform: translateY(-3px); background: var(--vermelho-escuro); }

.hero-stats {
  display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.stat {
  background: var(--branco); border-radius: 1rem;
  padding: 0.8rem 1.2rem; text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--amarelo);
}
.stat strong {
  display: block; font-family: 'Fredoka One', cursive;
  font-size: 1.8rem; color: var(--vermelho);
}
.stat span { font-size: 0.75rem; font-weight: 700; color: #888; text-transform: uppercase; }

.hero-img-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
}
.hero-mascote-bg {
  width: clamp(260px, 35vw, 460px);
  height: clamp(260px, 35vw, 460px);
  background: radial-gradient(circle, rgba(255,255,255,0.9) 40%, rgba(245,196,0,0.3) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 50px rgba(200,55,58,0.2), 0 0 0 12px rgba(245,196,0,0.3);
  animation: float 3.5s ease-in-out infinite;
}
.hero-mascote-bg img { width: 85%; height: 85%; object-fit: contain; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* ─── SEÇÃO GERAL ─── */
section { padding: 5rem 4rem; }
.section-tag {
  display: inline-block;
  background: var(--amarelo); color: var(--marrom);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 2rem;
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--marrom); line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* ─── SOBRE ─── */
.sobre {
  background: var(--branco);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img {
  background: linear-gradient(135deg, #FFF3CC, #FFE5B4);
  border-radius: 3rem 3rem 6rem 3rem;
  height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  border: 4px solid var(--amarelo);
  box-shadow: 8px 8px 0 var(--vermelho);
}
.sobre-badge {
  position: absolute; bottom: -18px; right: 20px;
  background: var(--vermelho); color: white;
  padding: 0.6rem 1.3rem; border-radius: 2rem;
  font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(200,55,58,0.4);
}
.sobre p { line-height: 1.8; color: #5C3D1E; margin-bottom: 1rem; font-size: 1.02rem; }
.sobre blockquote {
  background: #FFF8EC; border-left: 5px solid var(--amarelo);
  padding: 1rem 1.4rem; border-radius: 0 1rem 1rem 0;
  font-size: 1.05rem; font-weight: 700;
  color: var(--vermelho); margin: 1.5rem 0;
  font-style: italic;
}

/* ─── COMO FUNCIONA ─── */
.como { background: var(--vermelho); text-align: center; }
.como h2 { color: var(--branco); text-shadow: 2px 2px 0 rgba(0,0,0,0.15); }
.como .section-tag { background: var(--amarelo); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.step {
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
  border-radius: 1.5rem; padding: 2rem 1.2rem;
  color: var(--branco);
  transition: background 0.2s, transform 0.2s;
}
.step:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); }
.step-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem; color: var(--amarelo);
  line-height: 1;
}
.step-icon { font-size: 2.2rem; margin: 0.4rem 0; }
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; opacity: 0.85; line-height: 1.6; }

/* ─── CARDÁPIO ─── */
.cardapio { background: var(--cinza-claro); }
.cardapio-intro { max-width: 600px; margin-bottom: 2.5rem; }
.cardapio-intro p { color: #7A4B2A; font-weight: 600; line-height: 1.7; }

.tabs { display: flex; gap: 0.8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.65rem 1.8rem; border-radius: 3rem;
  border: 3px solid var(--vermelho);
  background: transparent; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 800; color: var(--vermelho);
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--vermelho); color: var(--branco);
  box-shadow: 0 4px 14px rgba(200,55,58,0.35);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.menu-card {
  background: var(--branco); border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  border: 2px solid transparent;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.menu-num {
  background: var(--amarelo); color: var(--marrom);
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; min-width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 400;
  box-shadow: 0 2px 6px rgba(245,196,0,0.5);
}
.menu-card h4 { font-size: 0.9rem; font-weight: 700; line-height: 1.4; color: var(--marrom); }

.preco-wrapper {
  margin-top: 2.5rem;
  background: var(--branco); border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  border: 3px solid var(--amarelo);
  box-shadow: 6px 6px 0 var(--amarelo-escuro);
}
.preco-wrapper h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem; color: var(--marrom); margin-bottom: 1.5rem;
}
.preco-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.preco-item {
  flex: 1; min-width: 90px;
  text-align: center;
  background: linear-gradient(135deg, #FFF3CC, #FFE5B4);
  border-radius: 1rem; padding: 1rem 0.8rem;
  border: 2px solid var(--amarelo);
}
.preco-item .peso { font-size: 0.78rem; font-weight: 800; color: var(--vermelho); text-transform: uppercase; letter-spacing: 0.05em; }
.preco-item .valor {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem; color: var(--marrom); display: block;
}

.aviso {
  margin-top: 1.5rem; padding: 1rem 1.4rem;
  background: #FFF3E0; border-radius: 1rem;
  border-left: 4px solid var(--laranja);
  font-size: 0.88rem; font-weight: 700; color: #7A4B2A;
  line-height: 1.6;
}

.pers-card {
  background: linear-gradient(135deg, var(--marrom), #3E1A0A);
  color: var(--branco); border-radius: 1.5rem;
  padding: 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  box-shadow: 0 10px 40px rgba(92,46,14,0.4);
  margin-top: 1rem;
}
.pers-card h3 {
  font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--amarelo);
  margin-bottom: 0.8rem; text-shadow: none;
}
.pers-card p { opacity: 0.9; line-height: 1.75; max-width: 500px; font-weight: 600; }
.tags-pers { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag-p {
  background: rgba(245,196,0,0.2); border: 2px solid var(--amarelo);
  color: var(--amarelo); padding: 0.3rem 1rem; border-radius: 2rem;
  font-size: 0.82rem; font-weight: 800;
}
.preco-consulta { margin-top: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ─── INFO ─── */
.info {
  background: var(--branco);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.info-card {
  border-radius: 1.5rem; padding: 2rem;
  border: 2px solid #F0E8D8;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.info-card .ico { font-size: 2.5rem; margin-bottom: 1rem; }
.info-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--marrom); margin-bottom: 0.6rem; }
.info-card p { font-size: 0.9rem; color: #7A5030; line-height: 1.75; font-weight: 600; }
.info-card ul { list-style: none; }
.info-card ul li { font-size: 0.9rem; color: #7A5030; font-weight: 600; line-height: 2; }
.info-card ul li::before { content: "✅ "; }
.info-card .atencao {
  margin-top: 0.8rem; padding: 0.6rem 0.9rem;
  background: #FFF3E0; border-radius: 0.7rem;
  font-size: 0.82rem; color: var(--laranja); font-weight: 800;
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(135deg, var(--amarelo), #F5A800);
  text-align: center;
}
.cta-final h2 { color: var(--marrom); font-size: clamp(2.2rem, 4vw, 3.5rem); }
.cta-final p { font-size: 1.15rem; font-weight: 700; color: var(--marrom); opacity: 0.8; margin-bottom: 2.5rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-final .btn-whats { font-size: 1.15rem; padding: 1.1rem 2.5rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--marrom); color: rgba(255,255,255,0.8);
  text-align: center; padding: 2.5rem;
}
footer .footer-logo img { height: 70px; margin-bottom: 1rem; opacity: 0.95; }
footer p { font-size: 0.88rem; line-height: 2; }
footer strong { color: var(--amarelo); }

/* ─── FLOAT WHATS ─── */
.float-whats {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 300;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  animation: pulse-green 2.5s ease-in-out infinite;
}
.float-whats svg { width: 34px; height: 34px; fill: white; }
.float-whats:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.55); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.85); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0.5rem 1rem; }
  .nav-links { gap: 0.2rem; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; text-align: center; gap: 1.5rem; }
  .hero::after { display: none; }
  .hero p { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { display: none; }
  .sobre { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .sobre-img { height: 180px; font-size: 5rem; }
  section { padding: 3rem 1.5rem; }
  .pers-card { grid-template-columns: 1fr; }
  .pers-card .btn-whats { justify-content: center; }
}
