/* ========================================
   VÓ RITA SALGADOS — ESTILOS
   Cores: Vermelho #CC0000, Branco #FFFFFF, Dourado #D4AF37
======================================== */

:root {
  --red: #fc1a24;
  --red-dark: #c4000a;
  --red-light: #ff3a43;
  --gold: #fcba04;
  --gold-light: #fdd04a;
  --gold-dark: #d99a00;
  --white: #FFFFFF;
  --off-white: #fff9f0;
  --text: #2d1a0e;
  --text-light: #6b4c35;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--red);
  transition: box-shadow 0.3s, padding 0.3s;
  padding: 0.5rem 0;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.2rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo-link { text-decoration: none; }

.logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 1rem;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav a:hover { color: var(--gold-light); }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.3rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--red-dark);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.btn-whatsapp-mobile {
  margin-top: 0.5rem;
  background: #25D366 !important;
  padding: 0.8rem 1rem !important;
  border-radius: var(--radius-sm);
  text-align: center;
  border-bottom: none !important;
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e60000 100%);
  padding: 8rem 0 5rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-logo {
  height: 260px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
  animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========================================
   TAGS & TITLES
======================================== */
.tag {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.tag-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.section-title.white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
}

.section-sub.dark { color: var(--text-light); }

/* ========================================
   SOBRE
======================================== */
.sobre {
  background: var(--off-white);
  padding: 5rem 0;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sobre-text p strong { color: var(--red); }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.2);
}

.badge span { font-size: 1.1rem; }

.sobre-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sobre-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.sobre-card:hover { transform: translateY(-4px); }

.sobre-card.destaque {
  background: var(--red);
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: row;
}

.sobre-card.destaque h3,
.sobre-card.destaque p { color: var(--white); margin: 0; }

.sobre-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.sobre-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}

.sobre-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ========================================
   CARDÁPIO
======================================== */
.cardapio {
  background: linear-gradient(160deg, #1a0a0a 0%, var(--red-dark) 40%, var(--red) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cardapio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0;
  text-align: left;
}

.cardapio-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.cardapio-category:hover { transform: translateY(-4px); }

.category-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-bottom: 3px solid var(--gold);
}

.category-icon { font-size: 1.8rem; }

.category-header h3 {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.8rem;
}

.item-list li {
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  background: transparent;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid #f0e8e0;
  transition: background 0.15s;
}

.item-list li:last-child { border-bottom: none; }

.item-list li:hover {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}

.item-icon { font-size: 1.2rem; }

/* Segundo cabeçalho dentro do mesmo card (Doces + Pastel) */
.category-header-secondary {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid var(--gold);
  background: linear-gradient(90deg, #1a0a0a, var(--red-dark)) !important;
}

/* ========================================
   PREÇOS
======================================== */
.precos {
  background: var(--off-white);
  padding: 5rem 0;
  text-align: center;
}

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

.preco-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.preco-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.destaque-card {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fff9f0, #fff3d6);
}

.preco-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.preco-icon { font-size: 2.8rem; margin-bottom: 0.8rem; }

.preco-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.preco-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.preco-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.preco-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f0e8;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
}

.destaque-card .preco-row { background: rgba(212,175,55,0.12); }

.preco-row span {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 600;
}

.preco-row strong {
  font-size: 1rem;
  color: var(--red);
  font-weight: 900;
}

.btn-card {
  display: block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-card:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.destaque-card .btn-card {
  background: var(--gold);
  color: var(--text);
}

.destaque-card .btn-card:hover {
  background: var(--gold-dark);
}

.aviso-parcelamento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  color: var(--white);
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
}

.aviso-parcelamento span { font-size: 2rem; flex-shrink: 0; }
.aviso-parcelamento p strong { color: var(--gold-light); }

/* ========================================
   BEBIDAS
======================================== */
.bebidas {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
  text-align: center;
}

.bebidas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.bebida-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  text-align: left;
}

.bebida-card:hover { background: rgba(255,255,255,0.12); }

.bebida-icon { font-size: 1.8rem; flex-shrink: 0; }

.bebida-info { flex: 1; }

.bebida-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.bebida-preco {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1rem;
}

/* ========================================
   INFOS / CONTATO
======================================== */
.infos {
  background: var(--off-white);
  padding: 5rem 0;
}

.infos-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.info-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card p strong { color: var(--red); }

/* ========================================
   MONTE SEU PEDIDO
======================================== */
.pedido-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.pedido-layout {
  display: block;
  max-width: 700px;
  margin: 0 auto;
}

/* Tabs */
.pedido-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pedido-tab {
  background: var(--white);
  border: 2px solid #e0d0c0;
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.pedido-tab:hover { border-color: var(--red); color: var(--red); }

.pedido-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Flavor grid */
.flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.flavor-btn {
  background: var(--white);
  border: 2px solid #e0d0c0;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.flavor-btn:hover { border-color: var(--red); }

.sabores-contador {
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--text);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.flavor-btn.selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Package grid */
.pkg-grid {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pkg-btn {
  flex: 1;
  min-width: 90px;
  background: var(--white);
  border: 2px solid #e0d0c0;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.8rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
  text-align: center;
}

.pkg-btn span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
}

.pkg-btn:hover { border-color: var(--gold); }

.pkg-btn.selected {
  background: linear-gradient(135deg, #fff3d0, #fff9ec);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(252,186,4,0.3);
}

.pkg-btn.selected span { color: var(--gold-dark); }

/* Adicionar button */
.btn-adicionar {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-adicionar:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Bebidas order */
.bebidas-order-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.bebida-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e8ddd0;
  gap: 1rem;
}

.bebida-order-item span { font-size: 0.9rem; color: var(--text); font-weight: 600; flex: 1; }
.bebida-order-item strong { color: var(--red); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}

.qty-control button:hover { background: var(--red); color: var(--white); }

.qty-control span {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
}

/* Carrinho */
.pedido-carrinho {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 90px;
}

.pedido-carrinho h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
}

#cart-items {
  min-height: 80px;
  margin-bottom: 1rem;
}

.cart-empty {
  color: var(--text-light);
  font-size: 0.92rem;
  text-align: center;
  padding: 1.2rem 0;
  line-height: 1.7;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f0e8e0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
}

.cart-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  transition: all 0.15s;
  flex-shrink: 0;
}

.cart-remove:hover { background: #fee; color: var(--red); }

.entrega-info {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.entrega-gratis {
  background: #e8f9ee;
  color: #1a7a3a;
  border: 1.5px solid #a3e0b4;
}

.entrega-taxa {
  background: #fff5e8;
  color: #b85c00;
  border: 1.5px solid #ffd199;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 2px solid #f0e8e0;
  margin-bottom: 1rem;
}

.cart-total-row span { font-size: 0.95rem; font-weight: 700; color: var(--text-light); }

#cart-total {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
}

.pedido-campo {
  margin-bottom: 1rem;
}

.pedido-campo-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.5rem;
}

.opcoes-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.opcao-btn {
  flex: 1;
  background: var(--white);
  border: 2px solid #e0d0c0;
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.opcao-btn:hover { border-color: var(--red); color: var(--red); }

.opcao-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.pedido-input {
  width: 100%;
  border: 2px solid #e0d0c0;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  margin-top: 0.5rem;
}

.pedido-input:focus { border-color: var(--gold); }

.pedido-input.input-erro { border-color: var(--red); background: #fff5f5; }

.troco-aviso {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.4rem;
}

.pedido-obs {
  width: 100%;
  border: 2px solid #e0d0c0;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  resize: vertical;
  min-height: 70px;
  color: var(--text);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.pedido-obs:focus { border-color: var(--gold); }

.btn-enviar-pedido {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(252,26,36,0.3);
}

.btn-enviar-pedido:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,26,36,0.45);
}

.cart-aviso {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin-top: 0.7rem;
}

/* Bebidas inline (abaixo das abas) */
.bebidas-inline {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid #e8ddd0;
  padding: 1.2rem 1.5rem;
}

.bebidas-pergunta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bebidas-pergunta span { font-size: 1.3rem; flex-shrink: 0; }

.bebidas-pergunta p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  margin: 0;
}

.bebidas-resposta {
  display: flex;
  gap: 0.5rem;
}

.resp-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 2px solid #e0d0c0;
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}

.resp-btn.active.resp-sim {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.resp-btn.active.resp-nao {
  background: #eee;
  border-color: #ccc;
  color: var(--text-light);
}

#bebidas-lista {
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bebidas-inline-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #f0e8e0;
}

.bebidas-inline-header span { font-size: 1.4rem; }

.bebidas-inline-header h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* Botão único de adicionar */
.btn-adicionar-unico {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(252,26,36,0.25);
}

/* Combo configurador */
.combo-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f0e8;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.combo-available-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}

.combo-available-box strong {
  font-size: 1.3rem;
  color: var(--text-light);
  min-width: 28px;
  text-align: center;
}

.combo-available-box.has-available {
  background: linear-gradient(90deg, rgba(252,186,4,0.15), transparent);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
}

.combo-available-box.has-available strong {
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.combo-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.combo-price-box strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
}

.combo-surcharge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(252,186,4,0.15);
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
}

.combo-flavors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.combo-flavor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid #e8ddd0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  transition: all 0.2s;
  gap: 0.5rem;
}

.combo-flavor-row.flavor-removed {
  opacity: 0.4;
  background: #f5f5f5;
  border-color: #ddd;
  text-decoration: line-through;
}

.combo-flavor-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.combo-flavor-ctrl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.combo-flavor-qty {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
}

.combo-btn-minus,
.combo-btn-plus {
  width: 38px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 2px solid;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
}

.combo-btn-minus {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
}

.combo-btn-minus:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
}

.combo-btn-plus {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.combo-btn-plus:hover:not(:disabled) {
  background: var(--gold);
  color: var(--text);
}

.combo-btn-minus:disabled,
.combo-btn-plus:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Toast notification */
#toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #333;
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================
   GAVETA DO CARRINHO
======================================== */
.cart-overlay, .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open, .popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--red);
  color: var(--white);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
}

.cart-drawer-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-close:hover { background: rgba(255,255,255,0.35); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.5rem;
}

.cart-drawer-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f0e8e0;
  flex-shrink: 0;
}

/* Botão flutuante carrinho */
.cart-float {
  position: fixed;
  bottom: 6rem;
  right: 1.8rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(252,26,36,0.45);
  z-index: 998;
  transition: all 0.2s;
}

.cart-float:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(252,26,36,0.55); }

#cart-badge {
  background: var(--gold);
  color: var(--text);
  border-radius: 50px;
  padding: 0.1rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 900;
}

/* Popup pós-adição */
.popup-add {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
  z-index: 1300;
  text-align: center;
  width: 320px;
  max-width: 90vw;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.popup-add.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.popup-add-icon {
  width: 52px;
  height: 52px;
  background: #e8f9ee;
  color: #1a7a3a;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.popup-add h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.popup-add p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.popup-add-btns {
  display: flex;
  gap: 0.7rem;
}

.popup-btn-mais {
  flex: 1;
  background: var(--white);
  border: 2px solid #e0d0c0;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.popup-btn-mais:hover { border-color: var(--red); color: var(--red); }

.popup-btn-finalizar {
  flex: 1;
  background: var(--red);
  border: none;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.popup-btn-finalizar:hover { background: var(--red-dark); }

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  background: #25D366;
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.2s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.8); }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--red-dark);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 0.5rem;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hide-mobile { display: inline; }

/* ========================================
   RESPONSIVO
======================================== */
/* Imagens nunca ultrapassam o container */
img { max-width: 100%; height: auto; }

/* ===================================================
   TABLET  (≤ 900px)
=================================================== */
@media (max-width: 900px) {
  .nav { display: none; }
  .btn-whatsapp-header { display: none; }
  .menu-toggle { display: block; }

  .sobre, .cardapio, .precos, .bebidas, .infos, .pedido-section { padding: 3.5rem 0; }

  .sobre-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sobre-img   { grid-template-columns: 1fr 1fr; }
  .sobre-card.destaque { grid-column: span 2; }

  .cardapio-grid { grid-template-columns: 1fr; }
  .infos-inner   { grid-template-columns: 1fr; }
}

/* ===================================================
   MOBILE  (≤ 600px)
=================================================== */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }

  /* Header */
  .logo { height: 52px; }

  /* Hero */
  .hero { padding: 6.5rem 0 3rem; min-height: auto; }
  .hero-logo { height: 160px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  /* Seções */
  .sobre, .cardapio, .precos, .bebidas, .infos, .pedido-section { padding: 2.5rem 0; }

  /* Sobre */
  .sobre-inner { gap: 1.5rem; }
  .sobre-img   { grid-template-columns: 1fr; }
  .sobre-card.destaque { grid-column: span 1; flex-direction: column; text-align: center; }

  /* Preços / Bebidas / Infos */
  .precos-grid { grid-template-columns: 1fr; }
  .bebidas-grid { grid-template-columns: 1fr; }
  .infos-inner  { grid-template-columns: 1fr; gap: 1rem; }

  .aviso-parcelamento { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-logo { height: 80px; }

  /* Pedido — tabs menores */
  .pedido-tabs { gap: 0.3rem; }
  .pedido-tab  { font-size: 0.8rem; padding: 0.4rem 0.7rem; }

  /* Combo flavors — empilha nome e controles */
  .combo-flavor-row { flex-wrap: wrap; gap: 0.4rem; }
  .combo-flavor-name { font-size: 0.85rem; }

  .hide-mobile { display: none; }
}

/* ===================================================
   MOBILE PEQUENO  (≤ 400px)
=================================================== */
@media (max-width: 400px) {
  .logo { height: 44px; }
  .hero-logo { height: 120px; }
  .pedido-tab { font-size: 0.75rem; padding: 0.35rem 0.55rem; }
  .preco-card { padding: 1.5rem 1rem; }
}
