:root {
  --primary: #E62525;
  --primary-hover: #CC1F1F;
  --primary-light: #FFF0F0;
  --yellow: #FFB800;
  --yellow-light: #FFFDF5;
  --bg-body: #F9FAFB;
  --bg-surface: #FFFFFF;
  --text-dark: #111827;
  --text-gray: #6B7280;
  --text-muted: #9CA3AF;
  --border-color: #E5E7EB;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-modal: 0 -5px 25px rgba(0,0,0,0.15);
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: var(--text-dark); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; outline: none; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 90px 0; }
.bg-light { background-color: var(--bg-surface); }
.text-center { text-align: center; }
.text-highlight { color: var(--primary); }
.text-yellow { color: var(--yellow); }

h1, h2, h3, .promo-header { font-family: var(--font-display); line-height: 1; letter-spacing: 0.03em; }
h1 { font-size: clamp(3.5rem, 8vw, 6rem); margin-bottom: 15px; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 15px; }
h3 { font-size: 2rem; }
p { color: var(--text-gray); font-size: 1.1rem; }
.subtitle { display: inline-block; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; margin-bottom: 12px; background: var(--primary-light); padding: 6px 14px; border-radius: var(--radius-pill); font-family: var(--font-body); }

/* BOTOES */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; height: 48px; border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem; transition: all 0.2s ease; font-family: var(--font-body); }
.btn:active { transform: scale(0.96); }
.btn-primary { background-color: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(230, 37, 37, 0.25); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(230, 37, 37, 0.35); }
.btn-secondary { background-color: var(--yellow); color: var(--text-dark); box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2); }
.btn-secondary:hover { background-color: #e5a600; transform: translateY(-2px); }
.btn-large { height: 56px; padding: 0 32px; font-size: 1.1rem; }
.btn-white { background-color: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.btn-ghost { background-color: transparent; color: var(--text-gray); border: 1.5px solid var(--border-color); }
.btn-ghost:hover { background-color: var(--bg-body); color: var(--text-dark); border-color: var(--text-gray); }
.btn-full { width: 100%; height: 56px; font-size: 1.1rem; margin-top: 10px; }

/* BADGE ABERTO/FECHADO */
.open-status { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; white-space: nowrap; transition: 0.2s; }
.open-status.is-open { background: #ECFDF5; color: #065F46; }
.open-status.is-closed { background: #FEF2F2; color: #991B1B; }
.open-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.open-status.is-open .open-status-dot { background: #10B981; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); animation: pulseDot 2s infinite; }
.open-status.is-closed .open-status-dot { background: #DC2626; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* HEADER */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: 0.3s; border-bottom: 1px solid transparent; }
.header.scrolled { border-bottom-color: var(--border-color); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 80px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 60px; width: auto; object-fit: contain; }
.nav { display: flex; gap: 32px; }
.nav a { font-weight: 600; color: var(--text-gray); transition: 0.2s; }
.nav a:hover, .nav a.active { color: var(--primary); }
.mobile-toggle { display: none; background: transparent; padding: 10px; }
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero-bg-shape { position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; background: var(--primary-light); border-radius: 50%; filter: blur(80px); z-index: -1; will-change: filter; contain: strict; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: #fff; border: 1px solid var(--border-color); padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-buttons { display: flex; gap: 16px; margin: 32px 0; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 24px; }
.hero-tags span { font-weight: 600; font-size: 0.95rem; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }
.image-showcase { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.image-showcase img { width: 100%; height: 550px; object-fit: cover; }
.floating-card { position: absolute; bottom: 30px; left: -20px; background: #fff; padding: 20px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-lg); }
.floating-card .icon { font-size: 2rem; background: var(--yellow-light); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* PROMOÇÕES COM BOTÃO DE PEDIR */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.promo-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.promo-tag { position: absolute; top: 20px; right: 20px; background: var(--primary-light); color: var(--primary); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }
.promo-tag.tag-blue { background: #E0F2FE; color: #2563EB; }
.promo-tag.tag-dark { background: #F3F4F6; color: #4B5563; }
.promo-tag.tag-gold { background: #FEF3C7; color: #D97706; }
.promo-content { flex-grow: 1; margin-top: 15px; }
.promo-content h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; padding-right: 50px; }
.promo-content p { font-size: 0.95rem; margin-bottom: 15px; }
.promo-content ul { list-style: none; margin-bottom: 20px; }
.promo-content li { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.promo-footer { border-top: 1px solid var(--border-color); padding-top: 15px; display: flex; justify-content: space-between; align-items: flex-end; }
.promo-price-box { display: flex; flex-direction: column; }
.promo-price-box span { font-size: 0.85rem; color: var(--text-gray); text-transform: uppercase; font-weight: 700; }
.promo-price-box strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--primary); line-height: 1; margin-top: 4px; }
.btn-promo { height: 42px; padding: 0 18px; font-size: 0.95rem; border-radius: var(--radius-md); }
.btn-promo.btn-promo-off,
.btn-promo:disabled { opacity: 0.38; cursor: not-allowed; pointer-events: none; }
.promo-tag.promo-tag-hoje { background: var(--primary); color: #fff; }
.promo-card[data-days]:not([data-days="todos"]) .promo-tag[data-tag-label] { transition: background 0.2s, color 0.2s; }

/* Card "Hoje" destacado */
.promo-card.promo-card-hoje { border: 2px solid var(--primary); background: var(--primary-light); box-shadow: 0 0 0 4px rgba(230,37,37,0.08), var(--shadow-md); }
.promo-card.promo-card-hoje:hover { border-color: var(--primary); box-shadow: 0 0 0 6px rgba(230,37,37,0.12), var(--shadow-lg); }
.promo-card.promo-card-hoje .promo-content h3 { color: var(--primary); }
.promo-card.promo-card-hoje .promo-price-box strong { color: var(--primary); }

/* SKIP LINK */
.skip-link { position: absolute; top: -48px; left: 8px; background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 700; font-size: 0.9rem; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; outline: 3px solid var(--yellow); outline-offset: 2px; }

/* FEATURES GRID */
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon { font-size: 1.9rem; flex-shrink: 0; line-height: 1; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.feature-item span { font-size: 0.85rem; color: var(--text-gray); line-height: 1.45; }
@media (max-width: 600px) { .features-list { grid-template-columns: 1fr; } }

/* CARDÁPIO */
.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 40px 0; }
.menu-tab { background: #fff; border: 1px solid var(--border-color); padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 600; color: var(--text-gray); transition: 0.2s; box-shadow: var(--shadow-sm); }
.menu-tab:hover { border-color: var(--primary); color: var(--primary); }
.menu-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.menu-tab-promo { background: var(--yellow-light); border-color: var(--yellow); color: #78350F; font-weight: 800; }
.menu-tab-promo:hover { background: var(--yellow); border-color: var(--yellow); color: var(--text-dark); }
.menu-tab-promo.active { background: var(--yellow); color: var(--text-dark); border-color: var(--yellow); }
.menu-panel { display: none; animation: fadeIn 0.4s ease; }
.menu-panel.active { display: block; }
.menu-section { margin-bottom: 60px; }
.menu-section-title { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; color: var(--primary); }
.menu-section-title::after { content: ""; height: 2px; flex-grow: 1; background: var(--border-color); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 15px; }
.menu-item { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px; cursor: pointer; transition: 0.2s; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.menu-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.menu-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.menu-item-top h4 { font-size: 1.1rem; margin: 0; font-family: var(--font-body); font-weight: 700;}
.menu-price { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.menu-item p { font-size: 0.9rem; margin: 0; }
.menu-section-note { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 16px; font-style: italic; }
.menu-item-img { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px; }
.menu-item-img img { width: 100%; height: 140px; object-fit: cover; }
.menu-item-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag { font-size: 0.85rem; line-height: 1; }

/* BARRA DE PROMOCOES DO DIA */
.promo-bar { background: var(--primary); color: #fff; text-align: center; padding: 10px 16px; font-size: 0.95rem; font-weight: 600; }
.promo-item { display: inline; }
.promo-highlight { font-weight: 800; }

/* BOTAO PROMOCOES DO DIA NA HERO */
.btn-promo-day { background: var(--yellow); color: #78350F; border: 2px solid var(--yellow); font-weight: 800; }
.btn-promo-day:hover { background: #f59e0b; border-color: #f59e0b; color: #78350f; }

/* SELETOR DE MULTI-SABORES NO MODAL */
.flavor-parts-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.flavor-part-row { display: flex; align-items: center; gap: 10px; }
.part-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; min-width: 56px; }
.part-name-fixed { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); flex: 1; }
.flavor-part-row .select-wrapper { flex: 1; }
.flavor-part-row .select-wrapper select { width: 100%; }
.btn-remove-part { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1rem; padding: 4px 6px; border-radius: 4px; line-height: 1; }
.btn-remove-part:hover { background: #fee2e2; color: #dc2626; }
.btn-add-part { margin-top: 4px; background: none; border: 1px dashed var(--primary); color: var(--primary); font-size: 0.9rem; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-md); cursor: pointer; width: 100%; transition: background 0.2s; }
.btn-add-part:hover { background: #fff1f2; }

/* SOBRE E ÁREA KIDS */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-images { position: relative; height: 450px; }
.img-main { width: 80%; height: 350px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: absolute; top: 0; right: 0; }
.img-sub { width: 60%; height: 250px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 8px solid var(--bg-surface); position: absolute; bottom: 0; left: 0; }

.kids-area-block { display: flex; align-items: center; gap: 40px; background: var(--yellow-light); border: 2px dashed var(--yellow); border-radius: var(--radius-lg); padding: 40px; margin-top: 60px; }
.kids-content { flex: 1; }
.kids-content h3 { font-family: var(--font-display); font-size: 2.5rem; color: #D97706; margin-bottom: 10px; }
.kids-content p { color: var(--text-dark); font-size: 1.1rem; }
.kids-image { flex: 1; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.kids-image img { width: 100%; height: 280px; object-fit: cover; }
.kids-image .carousel { border-radius: var(--radius-md); }
.kids-image .carousel-slide { height: 320px; }

/* CARROSSEL GENÉRICO */
.carousel { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-md); background: #000; }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 420px; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.carousel-slide.active { opacity: 1; pointer-events: auto; position: relative; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1; color: var(--text-dark); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: background 0.2s, transform 0.2s; z-index: 2; }
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.55); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.carousel-dots button.active { background: #fff; transform: scale(1.25); }

/* RODÍZIO */
.rodizio-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.rodizio-carousel .carousel-slide { height: 460px; }
.rodizio-info { display: flex; flex-direction: column; gap: 24px; }
.rodizio-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.rodizio-features li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; color: var(--text-dark); background: #fff; padding: 14px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm, 0 2px 6px rgba(0,0,0,0.06)); }
.rodizio-features li span { font-size: 1.5rem; }
.rodizio-info .btn { align-self: flex-start; }

/* CONTATO */
.contact-box { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; }
.contact-info { padding: 50px; width: 50%; }
.contact-hours { margin: 25px 0; padding: 20px; background: var(--bg-body); border-radius: var(--radius-md); }
.contact-hours strong { display: block; margin-bottom: 8px; }
.contact-map { width: 50%; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.footer { background: #fff; border-top: 1px solid var(--border-color); padding: 50px 0 30px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.footer-brand img { height: 50px; margin-bottom: 10px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-weight: 600; color: var(--text-gray); }
.footer-links a:hover { color: var(--primary); }
.footer-dev-bar { border-top: 1px solid var(--border-color); margin-top: 28px; padding-top: 18px; text-align: center; }
.footer-dev { font-size: .78rem; color: var(--text-muted); }
.footer-dev a { color: var(--text-muted); text-decoration: none; transition: color .3s; }
.footer-dev a:hover { color: var(--primary); }

/* WPP FLUTUANTE */
.float-wpp { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background-color: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); z-index: 85; transition: bottom 0.3s ease, transform 0.2s ease; }
.float-wpp:hover { transform: scale(1.1); background-color: #20BA56; }
.float-wpp.lifted { bottom: 90px; }

/* --- MODAIS (100% RESPONSIVOS COM FLEXBOX) --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(4px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; animation: fadeIn 0.2s ease-out; }

.modal-container { 
  background: #fff; 
  width: 100%; 
  max-width: 520px; 
  border-radius: var(--radius-lg); 
  display: flex; 
  flex-direction: column; 
  max-height: 90vh; 
  position: relative; 
  box-shadow: var(--shadow-modal); 
  animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
@keyframes slideUpModal { from { transform: translateY(40px) scale(0.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

.btn-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: var(--bg-body); border-radius: 50%; font-size: 1.2rem; color: var(--text-gray); display: flex; align-items: center; justify-content: center; z-index: 10; transition: 0.2s; }
.btn-close:hover { background: #E5E7EB; color: var(--text-dark); }

.modal-header-info { padding: 24px 24px 16px; flex-shrink: 0; }
.modal-header-info h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 4px; padding-right: 40px; color: var(--primary); }
.modal-header-info p { font-size: 0.95rem; }

.modal-content-scroll { padding: 0 24px 24px; overflow-y: auto; flex-grow: 1; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; margin-bottom: 10px; font-size: 1rem; color: var(--text-dark); }
.select-wrapper { position: relative; }
.select-wrapper::after { content: "▼"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 0.7rem; color: var(--text-gray); pointer-events: none; }
input[type="text"], select, textarea { width: 100%; padding: 14px; border: 2px solid var(--border-color); border-radius: var(--radius-md); background: #fff; font-family: inherit; font-size: 1rem; color: var(--text-dark); transition: 0.2s; outline: none; }
select { appearance: none; }
input[type="text"]:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
textarea { min-height: 80px; resize: vertical; }

.toggle-card { display: flex; justify-content: space-between; align-items: center; padding: 16px; border: 2px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-body); margin-bottom: 12px; }
.toggle-info strong { display: block; font-size: 0.95rem; }
.toggle-info span { font-size: 0.85rem; color: var(--text-gray); }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background-color: #D1D5DB; transition: .3s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: var(--shadow-sm); }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(20px); }
.second-flavor-box { padding: 16px; border-radius: var(--radius-md); background: var(--primary-light); border: 1px dashed #FCA5A5; animation: fadeIn 0.3s; }

.modal-actions { padding: 20px 24px; background: #fff; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.modal-actions-vertical { flex-direction: column; align-items: stretch; gap: 8px; }
.price-display span { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-gray); text-transform: uppercase; }
.price-display strong { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--text-dark); }
.btn-add { width: 50%; height: 50px; font-size: 1.05rem; }

/* CHECKOUT E ENTREGA (CARRINHO) */
.cart-items-list { margin-bottom: 20px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-color); gap: 12px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info strong { display: block; font-size: 1rem; }
.cart-item-notes { display: block; font-size: 0.85rem; color: var(--text-gray); margin-top: 4px; }
.cart-item-price { font-weight: 800; color: var(--text-dark); white-space: nowrap; }

/* Controle de quantidade no carrinho */
.cart-qty-control { display: flex; align-items: center; gap: 4px; margin-top: 10px; }
.cart-qty-btn { width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--border-color); background: #fff; color: var(--text-dark); font-size: 1.1rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.15s; padding: 0; line-height: 1; }
.cart-qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-qty-value { min-width: 28px; text-align: center; font-weight: 800; font-size: 0.95rem; color: var(--text-dark); }
.cart-qty-remove { width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid transparent; background: transparent; color: var(--text-gray); font-size: 1rem; cursor: pointer; margin-left: 8px; transition: 0.15s; padding: 0; }
.cart-qty-remove:hover { background: #FEF2F2; color: #DC2626; border-color: #FCA5A5; }
.delivery-options { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.delivery-card { display: flex; align-items: center; gap: 12px; padding: 14px; border: 2px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: 0.2s; }
.delivery-card:hover { background: var(--bg-body); }
.delivery-card input { width: 20px; height: 20px; accent-color: var(--primary); }
.delivery-card-content strong { display: block; font-size: 1rem; }
.delivery-card-content span { font-size: 0.85rem; color: var(--text-gray); }
.delivery-card:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }

.checkout-form { margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--border-color); animation: fadeIn 0.3s; }

.summary-line { display: flex; justify-content: space-between; font-size: 1rem; color: var(--text-gray); margin-bottom: 4px; }
.summary-total { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 12px; align-items: center; }
.summary-total span { font-weight: 700; font-size: 1.1rem; }
.summary-total strong { font-size: 1.6rem; color: var(--primary); font-weight: 800; }

/* WIZARD DO CARRINHO */

/* Stepper */
.cart-stepper { display: flex; align-items: center; padding: 16px 52px 0 24px; gap: 8px; }
.cart-step { display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0.4; transition: opacity 0.3s; min-width: 0; }
.cart-step.active, .cart-step.completed { opacity: 1; }
.cart-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-body); border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; transition: 0.3s; flex-shrink: 0; }
.cart-step.active .cart-step-num { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.1); }
.cart-step.completed .cart-step-num { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-step.completed .cart-step-num::after { content: '✓'; }
.cart-step.completed .cart-step-num .step-n { display: none; }
.cart-step-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap; }
.cart-step-line { flex: 1; height: 2px; background: var(--border-color); margin-top: -18px; transition: background 0.3s; }
.cart-step.completed + .cart-step-line { background: var(--primary); }

/* Step panels */
.cart-step-panel { animation: slideInRight 0.25s ease-out; }
.cart-step-panel[hidden] { display: none !important; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

/* Subtotal preview (step 1) */
.cart-step-summary { margin-top: 16px; padding: 12px 16px; background: var(--bg-body); border-radius: var(--radius-md); display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; }

/* Aviso de fechado no topo do carrinho */
.cart-closed-warning { background: #FEF3C7; border: 1.5px solid #FCD34D; border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }
.cart-closed-warning[hidden] { display: none; }
.cart-closed-warning strong { font-size: 0.95rem; color: #92400E; }
.cart-closed-warning span { font-size: 0.82rem; color: #78350F; }

/* Ícones nos delivery cards */
.delivery-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.delivery-card svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--text-gray); transition: color 0.2s; }
.delivery-card:has(input:checked) svg { color: var(--primary); }
.savings-badge { display: inline-block; background: #10B981; color: #fff; font-size: 0.65rem; padding: 2px 7px; border-radius: 10px; margin-left: 4px; font-weight: 700; vertical-align: middle; }

/* Formulário: campo opcional */
.form-label-optional { font-weight: 400; color: var(--text-muted); font-size: 0.85em; }

/* Validação visual */
.form-group input.error { border-color: #DC2626 !important; background: #FEF2F2; }
.error-msg { display: block; color: #DC2626; font-size: 0.8rem; margin-top: 4px; font-weight: 600; }
.error-msg[hidden] { display: none; }
.cep-loading-msg { display: block; color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }
.cep-loading-msg[hidden] { display: none; }

/* Cards de pagamento */
.payment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.payment-card { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px; border: 2px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: 0.2s; }
.payment-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.payment-card svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--text-gray); transition: color 0.2s; }
.payment-card span { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.payment-card:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }
.payment-card:has(input:checked) svg { color: var(--primary); }
.payment-card:hover { background: var(--bg-body); }
.payment-card.recommended::before { content: 'Mais rápido'; position: absolute; top: -9px; right: 8px; background: var(--primary); color: #fff; font-size: 0.62rem; padding: 2px 8px; border-radius: 10px; font-weight: 700; }

/* Resultado do troco */
.change-result { display: block; margin-top: 6px; font-size: 0.9rem; font-weight: 700; color: #10B981; }
.change-result[hidden] { display: none; }

/* Resumo de valores (step 3) */
.order-summary-box { margin-top: 20px; padding: 16px; background: var(--bg-body); border-radius: var(--radius-md); }
.order-summary-box .summary-line { font-size: 0.95rem; }
.order-summary-box .summary-total { margin-top: 8px; }

/* Navegação do wizard */
.cart-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cart-nav .btn-ghost { flex-shrink: 0; }
.cart-nav .btn-primary { flex: 1; }
.btn-wpp { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; border-color: #25D366; }
.btn-wpp:hover { background: #1ebe5a; border-color: #1ebe5a; }

/* Overlay de confirmação */
.cart-confirm-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); display: flex; flex-direction: column; padding: 28px 24px; gap: 12px; animation: fadeIn 0.2s; z-index: 10; border-radius: inherit; overflow-y: auto; }
.cart-confirm-overlay[hidden] { display: none; }
.confirm-header { text-align: center; }
.confirm-header svg { color: #10B981; margin-bottom: 8px; }
.confirm-header h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 4px; }
.confirm-header p { color: var(--text-gray); font-size: 0.9rem; }
.confirm-summary { background: var(--bg-body); border-radius: var(--radius-md); padding: 4px 16px; }
.confirm-summary-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; font-size: 0.95rem; gap: 12px; border-bottom: 1px solid var(--border-color); }
.confirm-summary-row:last-child { border-bottom: none; }
.confirm-summary-row span { color: var(--text-gray); white-space: nowrap; }
.confirm-summary-row strong { color: var(--text-dark); text-align: right; font-weight: 600; }
.confirm-summary-total { margin-top: 4px; border-top: 2px solid var(--border-color) !important; padding-top: 14px; }
.confirm-summary-total strong { font-size: 1.1rem; color: var(--primary); font-weight: 800; }
.confirm-actions { display: flex; gap: 10px; margin-top: auto; flex-shrink: 0; }
.confirm-actions .btn-ghost { flex-shrink: 0; }
.confirm-actions .btn-primary { flex: 1; }

/* TOAST PÓS-ADIÇÃO */
.cart-added-toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: #fff; border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,0.18); padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; z-index: 200; width: max-content; max-width: calc(100vw - 32px); min-width: 280px; opacity: 0; transition: opacity 0.25s, transform 0.25s; pointer-events: none; border: 1px solid var(--border-color); }
.cart-added-toast.cart-toast-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.cart-toast-info { display: flex; align-items: center; gap: 12px; }
.cart-toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.cart-toast-info div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-toast-info strong { font-size: 0.95rem; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.cart-toast-info span { font-size: 0.8rem; color: var(--text-gray); }
.cart-toast-actions { display: flex; gap: 8px; }
.cart-toast-btn { flex: 1; height: 40px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: 0.15s; }
.cart-toast-more { background: var(--bg-body); color: var(--text-dark); border: 1.5px solid var(--border-color); }
.cart-toast-more:hover { background: #e5e7eb; }
.cart-toast-checkout { background: var(--primary); color: #fff; }
.cart-toast-checkout:hover { background: var(--primary-hover); }

/* CARRINHO FLUTUANTE (PÍLULA) */
.cart-pill { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 8px 8px 8px 20px; border-radius: var(--radius-pill); display: none; align-items: center; gap: 20px; z-index: 90; box-shadow: 0 10px 30px rgba(230, 37, 37, 0.4); animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); width: max-content; min-width: 300px; justify-content: space-between; }
@keyframes popIn { 0% { transform: translate(-50%, 100px) scale(0.8); opacity: 0; } 100% { transform: translate(-50%, 0) scale(1); opacity: 1; } }
.cart-pill-info { display: flex; align-items: center; gap: 12px; }
.cart-badge { background: #fff; color: var(--primary); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.cart-texts { display: flex; flex-direction: column; line-height: 1.1; }
.cart-title { color: #FFF; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; opacity: 0.9; }
.cart-total { color: #fff; font-size: 1.1rem; font-weight: 800; }
.cart-pill .btn { height: 40px; padding: 0 20px; font-size: 0.9rem; }

/* UTILS E ANIMAÇÕES */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* FOCUS VISIBLE */
.menu-tab:focus-visible, .nav a:focus-visible, .btn:focus-visible,
.btn-close:focus-visible, .delivery-card:focus-visible,
.float-wpp:focus-visible, .btn-add-part:focus-visible,
.btn-remove-part:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* REDUCAO DE MOVIMENTO */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .reveal-delay { transition-delay: 0s; }
  .modal-container, .cart-pill { animation: none; }
  .btn, .promo-card, .menu-item, .menu-tab, .nav a { transition: none; }
}

/* CONTATO SOCIAL LINKS */
.contact-phone-link { display: block; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* RESPONSIVO */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .image-showcase img { height: 400px; }
  .kids-area-block { flex-direction: column; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .rodizio-grid { grid-template-columns: 1fr; gap: 30px; }
  .rodizio-info .btn { align-self: center; }
  .contact-box { flex-direction: column; }
  .contact-info, .contact-map { width: 100%; }
  .contact-map { height: 300px; }
}

@media (max-width: 768px) {
  .nav { position: fixed; top: 80px; left: 5%; right: 5%; background: #fff; flex-direction: column; padding: 24px; border-radius: var(--radius-lg); gap: 20px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 0.3s; border: 1px solid var(--border-color); }
  .nav.mobile-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-toggle { display: block; }
  .header-actions .btn { display: none; }
  
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-container { border-radius: 24px 24px 0 0; max-height: 85vh; width: 100%; margin-top: auto; }
  @keyframes slideUpModal { from { transform: translateY(100%); } to { transform: translateY(0); } }
  
  .cart-pill { width: calc(100% - 32px); min-width: auto; }
  .float-wpp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .float-wpp.lifted { bottom: 90px; }

  /* Wizard mobile */
  .cart-stepper { padding: 12px 16px 0; }
  .cart-step-label { display: none; }
  .cart-step-num { width: 28px; height: 28px; font-size: 0.8rem; }
  .payment-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .payment-card { padding: 10px 8px; gap: 6px; }
  .payment-card svg { width: 22px; height: 22px; }
  .payment-card span { font-size: 0.8rem; }
  .cart-confirm-overlay { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .img-main { height: 300px; }
  .img-sub { height: 200px; width: 70%; }
  .modal-actions { padding: 16px; }
  .kids-image img { height: 220px; }
  .kids-image .carousel-slide { height: 240px; }
  .rodizio-carousel .carousel-slide { height: 300px; }
  .carousel-slide { height: 300px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1.4rem; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
}