html {
  scroll-behavior: smooth;
}

/* ===== Reset e base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --purple-1:#a84be0;
  --purple-2:#7a3be2;
  --yellow:#f0bf2a;
  --muted:#f7f6fb;
  --card:#ffffff;
  --text:#333;
}
body{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(135deg,var(--purple-1),var(--purple-2));
  color: white;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ===== NAV ===== */
.nav{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.logo{ width:44px; height:44px; object-fit:cover; border-radius:8px; background:#fff; padding:6px; }
.brand-name{ font-weight:700; color:var(--purple-2); font-size:1.1rem; }
.menu{ display:flex; gap:18px; align-items:center; }
.menu a{ color:#333; text-decoration:none; font-weight:600; padding:8px 12px; border-radius:999px; }
.menu a.cta{ background:var(--purple-1); color:white; box-shadow:0 6px 14px rgba(120,50,200,0.18); }

/* hamburger (mobile) */
.hamburger{ display:none; background:none; border:none; font-size:1.6rem; }

/* ===== HERO ===== */
.hero{ padding:40px 0 0 0; position:relative; overflow:hidden; }
.hero-inner{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; padding:40px 20px; }
.badge{ display:inline-block; background:var(--yellow); color:#2b2b2b; padding:6px 12px; border-radius:999px; font-weight:700; margin-bottom:18px; font-size:0.9rem; }
.hero-text h1{ font-size:3.5rem; line-height:1; color: #fff; font-weight:800; }
.accent{ color: var(--yellow); }
.lead{ color: rgba(255,255,255,0.92); margin:18px 0 26px; max-width:520px; }

/* buttons */
.btn{ display:inline-flex; align-items:center; gap:10px; padding:12px 20px; border-radius:999px; cursor:pointer; text-decoration:none; }
.btn-primary{ background:var(--yellow); color:#2b2b2b; font-weight:700; box-shadow:0 12px 30px rgba(160,80,200,0.12); transition:transform .18s ease, filter .18s ease; }
.btn-primary:hover{ transform:translateY(-4px); filter:brightness(.98); }
.btn-ghost{ background:rgba(255,255,255,0.2); border:1px solid rgba(255,255,255,0.12); color:white; padding:12px 40px; }

/* hero media */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-card {
  width: 100%;
  max-width: 620px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.15), rgba(0,0,0,0.1));
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: scale(1.03);
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05) saturate(1.1);
  transition: filter 0.3s ease;
}

.media-card:hover .main-img {
  filter: brightness(1.15) contrast(1.1) saturate(1.2);
}

.main-img{ width:100%; border-radius:14px; display:block; object-fit:cover; }

/* decorative curve */
.curve{ display:block; width:100%; margin-top:40px; }

/* ===== SECTION PEDIDO (condimentos) ===== */
.section{ padding:60px 0; background:transparent; }
.section-pedido{ background:var(--muted); color:var(--text); padding-top:80px; padding-bottom:100px; }
.section-inner{ max-width:1000px; margin:0 auto; text-align:center; padding:0 20px; }
.section-title{ font-size:2.6rem; margin-bottom:6px; color:var(--text); font-weight:800; }
.section-lead{ color:#666; margin-bottom:28px; }

/* card */
.card.condimentos-card{ background:var(--card); border-radius:12px; padding:28px; box-shadow:0 8px 30px rgba(18,18,18,0.04); text-align:center; }

/* grid de condimentos */
.condimentos-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px 28px;
  align-items:center;
  margin-bottom:18px;
}
.cond{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:10px 14px;
  border-radius:8px;
  background:transparent;
  cursor:pointer;
}
.cond input{ width:16px; height:16px; accent-color:var(--purple-1); }
.cond-name{ font-weight:700; color:var(--text); margin-right:auto; }
.price{ font-size:0.85rem; color:#999; text-decoration:line-through; margin-left:12px; }
.tag{ color:var(--purple-1); font-weight:700; margin-left:6px; }

/* aceita */
.accept{ color:#666; margin:8px 0 18px; }

/* finalize */
.finalize{ margin-top:10px; }
#finalizar{ padding:14px 30px; border-radius:30px; background:var(--purple-1); color:white; border:none; font-weight:800; box-shadow:0 10px 30px rgba(120,50,200,0.16); cursor:pointer; }
#finalizar:hover{ transform:translateY(-3px); }

/* ===== FOOTER ===== */
.footer{ padding:30px 0; text-align:center; color:#fff; }

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero-media{ order:-1; margin-bottom:20px; }
  .hero-text h1{ font-size:2.4rem; }
  .menu{ display:none; }
  .hamburger{ display:block; }
}
@media (max-width: 600px){
  .condimentos-grid{ grid-template-columns:1fr; }
  .hero-text h1{ font-size:2rem; }
  .lead{ font-size:0.95rem; }
  .main-img{ max-height:300px; object-fit:cover; }
  .btn-primary img{ display:none; } /* se for usar ícone, esconder no mobile */
}
/* ===== SECTION TAMANHOS ===== */
.section-tamanhos {
  background: #fff;
  color: var(--text);
  padding: 80px 0;
}

.section-tamanhos .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.section-tamanhos .section-title {
  font-size: 2.6rem;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-tamanhos .section-lead {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Cards de tamanhos */
.tamanhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.tamanho-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(18, 18, 18, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 280px;
}

.tamanho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tamanho-img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  object-fit: cover;
}

.tamanho-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.tamanho-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.preco {
  margin-bottom: 16px;
}

.preco-antigo {
  color: #aaa;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-right: 6px;
}

.preco-novo {
  color: var(--purple-1);
  font-weight: 700;
  font-size: 1.1rem;
}

.tamanho-card .btn-primary {
  display: inline-block !important;
  background: var(--purple-1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.tamanho-card .btn-primary:hover {
  transform: translateY(-4px);
  filter: brightness(0.95);
}

/* ===== Responsivo ===== */
@media (max-width: 600px) {
  .section-tamanhos .section-title {
    font-size: 2rem;
  }
  .tamanho-card {
    max-width: 90%;
  }
}
.preco {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Preço antigo */
.preco-antigo {
  text-decoration: line-through;
  color: #e63946; /* vermelho */
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 600;
}

/* Preço novo em destaque */
.preco-novo {
  color: #ffb703; /* amarelo vibrante */
  font-size: 2.4rem; /* dobro do tamanho */
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Selo de promoção */
.selo-promocao {
  position: absolute;
  top: -10px;
  right: -20px;
  background: linear-gradient(45deg, #ffb703, #fb8500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  transform: rotate(5deg);
}
/* Efeito de destaque rápido na área de condimentos */
.highlight-condimentos {
  box-shadow: 0 0 30px 10px rgba(255, 215, 0, 0.3);
  transition: box-shadow 0.6s ease-out;
}
/* ===== MODAL ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 200;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center; align-items: center;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 380px;
  width: 90%;
  color: #333;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.modal-content label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 6px;
}

.modal-content input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #ddd;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.modal-content input:focus {
  outline: none;
  border-color: var(--purple-1);
}

.modal-content .btn.full {
  width: 100%;
  margin-top: 18px;
  background: var(--purple-1);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
}

.modal-content .btn.full:hover {
  filter: brightness(0.95);
}

.close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.4rem;
  cursor: pointer;
  color: #777;
}

/* === Aviso lateral de seleção === */
.aviso-selecao {
  position: fixed;
  top: 20px;
  right: -400px;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 15px;
  line-height: 1.4;
  z-index: 9999;
  transition: right 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  border-left: 5px solid #a80077;
}

.aviso-selecao strong {
  font-weight: 700;
  color: #a80077;
}

.aviso-selecao.ativo {
  right: 20px;
  opacity: 1;
}

/* === AJUSTES PARA CELULAR === */
@media (max-width: 768px) {
  /* Reduz espaçamento geral das seções */
  .section-inner {
    padding: 1.5rem;
  }

  /* Títulos menores */
  .section-title {
    font-size: 1.6rem;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  /* === GRID DOS TAMANHOS (AÇAÍS) === */
  .tamanhos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 por linha */
    gap: 1rem;
  }

  .tamanho-card {
    padding: 0.8rem;
    border-radius: 1rem;
  }

  .tamanh

  /* === Destaque Promoção Duplo === */
.destaque-promocao {
  position: relative;
  border: 3px solid #e60000;
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
  border-radius: 16px;
  overflow: hidden;
  animation: pulsePromo 2s infinite;
}

@keyframes pulsePromo {
  0%, 100% {
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.6);
  }
}

.selo-promocao {
  position: absolute;
  top: 10px;
  right: -40px;
  background-color: #e60000;
  color: #fff;
  font-weight: bold;
  transform: rotate(45deg);
  padding: 6px 40px;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

}