/* ============================================
   BUTECO BAR - CARDAPIO DIGITAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --brand-400: #fb923c;
  --brand-500: #f97316;
  --brand-600: #ea580c;
  --dark-50: #f5f3f0;
  --dark-100: #e8e4de;
  --dark-200: #d4cec4;
  --dark-300: #b8b0a2;
  --dark-400: #9a8f7e;
  --dark-500: #827663;
  --dark-600: #6b6050;
  --dark-700: #504840;
  --dark-800: #362f29;
  --dark-900: #1c1815;
  --dark-950: #0f0d0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark-950);
  color: var(--dark-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(154,143,126,.3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(154,143,126,.5); }

.font-display { font-family: 'Playfair Display', serif; }

/* ── Layout ── */
.container { max-width: 1024px; margin: 0 auto; padding: 0 16px; }

/* ── Header ── */
.hero { position: relative; overflow: hidden; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark-950), rgba(15,13,11,.95), var(--dark-950)); }
.hero-content { position: relative; z-index: 10; padding: 32px 16px 16px; text-align: center; max-width: 1024px; margin: 0 auto; }
.logo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(249,115,22,.3); box-shadow: 0 20px 40px rgba(249,115,22,.1); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin: 16px 0 4px; }
.hero .subtitle { color: var(--dark-400); font-size: .875rem; margin-bottom: 12px; }
.hero .info { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: .75rem; color: var(--dark-400); }
.hero .info svg { color: var(--brand-500); }

/* ── Sticky Header ── */
.sticky-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(28,24,21,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(80,72,64,.3);
  transform: translateY(-100%); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.sticky-header.visible { transform: translateY(0); opacity: 1; }
.sticky-header-inner { max-width: 1024px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.sticky-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(249,115,22,.3); }
.sticky-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; margin-left: 12px; }
.sticky-left { display: flex; align-items: center; }

/* ── Search ── */
.search-bar {
  max-width: 1024px; margin: 0 auto 16px; padding: 0 16px;
  transition: opacity .3s;
}
.search-btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  background: rgba(28,24,21,.6); border: 1px solid rgba(80,72,64,.3);
  color: var(--dark-400); font-size: .875rem; cursor: pointer;
  transition: border-color .2s;
}
.search-btn:hover { border-color: rgba(249,115,22,.3); }

.icon-btn {
  padding: 8px; border-radius: 12px;
  background: rgba(54,47,41,.6); border: 1px solid rgba(80,72,64,.3);
  color: var(--dark-300); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { color: var(--brand-500); border-color: rgba(249,115,22,.3); }

/* ── Category Nav ── */
.cat-nav {
  position: sticky; z-index: 40;
  background: rgba(28,24,21,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(80,72,64,.2);
  transition: top .3s;
}
.cat-scroll {
  max-width: 1024px; margin: 0 auto;
  display: flex; gap: 8px; padding: 12px 16px;
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  padding: 8px 16px; border-radius: 9999px; font-size: .8125rem; font-weight: 600;
  white-space: nowrap; cursor: pointer; border: 1px solid rgba(80,72,64,.5);
  background: rgba(28,24,21,.6); color: var(--dark-300);
  transition: all .2s;
}
.cat-pill:hover { border-color: rgba(249,115,22,.3); color: var(--dark-100); }
.cat-pill.active {
  background: var(--brand-500); border-color: var(--brand-500); color: #fff;
  box-shadow: 0 4px 15px rgba(249,115,22,.25);
}

/* ── Happy Hour Banner ── */
.hh-banner {
  max-width: 1024px; margin: 0 auto 16px; padding: 0 16px;
}
.hh-card {
  border-radius: 16px; padding: 16px;
  background: linear-gradient(135deg, rgba(234,88,12,.15), rgba(249,115,22,.08), rgba(217,119,6,.15));
  border: 1px solid rgba(249,115,22,.3);
  position: relative; overflow: hidden;
  animation: glow 2s ease-in-out infinite alternate;
}
.hh-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(249,115,22,.08), transparent 70%);
}
.hh-inner { position: relative; display: flex; align-items: center; gap: 16px; }
.hh-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(249,115,22,.2); display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.hh-badge { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-400); margin-bottom: 2px; }
.hh-promo { color: var(--dark-100); font-weight: 600; font-size: .875rem; }
.hh-tag { color: var(--dark-400); font-size: .75rem; margin-top: 2px; }

/* ── Menu Section ── */
.menu-section { margin-bottom: 40px; padding-top: 16px; }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-icon { font-size: 1.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.section-count {
  font-size: .75rem; color: var(--dark-500);
  background: rgba(54,47,41,.6); padding: 2px 10px; border-radius: 9999px;
}

/* ── Menu Grid ── */
.menu-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Menu Card ── */
.menu-card {
  background: rgba(28,24,21,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(80,72,64,.3); border-radius: 16px;
  overflow: hidden; cursor: pointer;
  transition: all .3s; text-align: left; width: 100%;
}
.menu-card:hover { border-color: rgba(249,115,22,.2); box-shadow: 0 8px 30px rgba(249,115,22,.05); }
.menu-card:active { transform: scale(.98); }

.card-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--dark-800); }
.card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center; image-rendering: auto;
  transition: transform .5s, opacity .5s; opacity: 0;
}
.card-img.loaded { opacity: 1; }
.menu-card:hover .card-img.loaded { transform: scale(1.05); }

.card-placeholder {
  aspect-ratio: 1/1; background: rgba(54,47,41,.5);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: .3;
}

.highlight-badge {
  position: absolute; top: 8px; right: 8px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(249,115,22,.9); backdrop-filter: blur(4px);
  color: #fff; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 8px; border-radius: 9999px;
}

.card-body { padding: 16px; }
.card-name {
  font-weight: 600; font-size: .875rem; color: var(--dark-50);
  line-height: 1.3; margin-bottom: 4px; transition: color .2s;
}
.menu-card:hover .card-name { color: var(--brand-400); }
.card-desc {
  color: var(--dark-400); font-size: .75rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 12px;
}
.card-price { color: var(--brand-400); font-weight: 700; font-size: 1rem; }

.card-prices { display: flex; flex-wrap: wrap; gap: 8px; }
.card-price-tag { background: rgba(54,47,41,.6); border-radius: 8px; padding: 4px 10px; }
.card-price-label { display: block; font-size: .625rem; color: var(--dark-400); }
.card-price-value { color: var(--brand-400); font-weight: 700; font-size: .875rem; }

/* ── Shimmer ── */
.shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  background-size: 200% 100%; animation: shimmer 2s infinite;
}

/* ── Extras Section ── */
.extras-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-top: 16px; }
.extras-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .extras-grid { grid-template-columns: repeat(4, 1fr); } }

.extra-card {
  background: rgba(28,24,21,.5); border: 1px solid rgba(80,72,64,.3);
  border-radius: 12px; padding: 14px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .2s;
}
.extra-card:hover { border-color: rgba(249,115,22,.2); }
.extra-name { color: var(--dark-200); font-size: .875rem; font-weight: 500; }
.extra-price { color: var(--brand-400); font-weight: 700; font-size: .875rem; white-space: nowrap; margin-left: 8px; }

/* ── Footer ── */
.footer { border-top: 1px solid rgba(54,47,41,.5); background: var(--dark-950); padding: 32px 16px; }
.footer-inner { max-width: 1024px; margin: 0 auto; text-align: center; }
.footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(80,72,64,.3); margin: 0 auto 16px; }
.footer h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--dark-100); margin-bottom: 12px; }
.footer-addr { color: var(--dark-400); font-size: .875rem; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 12px; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: background .2s;
}
.footer-link.whatsapp { background: rgba(22,163,74,.2); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.footer-link.whatsapp:hover { background: rgba(22,163,74,.3); }
.footer-link.instagram { background: rgba(147,51,234,.2); border: 1px solid rgba(168,85,247,.3); color: #c084fc; }
.footer-link.instagram:hover { background: rgba(147,51,234,.3); }
.footer-legal { color: var(--dark-600); font-size: .75rem; margin-top: 16px; }
.footer-copy { color: var(--dark-700); font-size: .625rem; margin-top: 8px; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 640px) { .modal-overlay { align-items: center; } }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-content {
  position: relative; width: 100%; max-width: 512px; max-height: 90vh;
  background: var(--dark-900); border: 1px solid rgba(80,72,64,.3);
  border-radius: 16px 16px 0 0; overflow: hidden;
  transform: translateY(100%); transition: transform .3s;
}
.modal-overlay.open .modal-content { transform: translateY(0); }
@media (min-width: 640px) { .modal-content { border-radius: 16px; } }

.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  padding: 8px; border-radius: 50%;
  background: rgba(15,13,11,.7); backdrop-filter: blur(4px);
  border: none; color: var(--dark-300); cursor: pointer; transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: #fff; }

.modal-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center center; }
.modal-img-wrap { position: relative; background: var(--dark-800); }

.modal-highlight {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,.9); backdrop-filter: blur(4px);
  color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 12px; border-radius: 9999px;
}

.modal-body { padding: 24px; overflow-y: auto; max-height: 50vh; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.modal-desc { color: var(--dark-300); font-size: .875rem; line-height: 1.6; margin-bottom: 20px; }

.modal-price-box {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(54,47,41,.4); border-radius: 12px; padding: 16px;
  border: 1px solid rgba(80,72,64,.2);
}
.modal-price-label { color: var(--dark-400); font-size: .875rem; }
.modal-price-value { color: var(--brand-400); font-weight: 700; font-size: 1.5rem; }

.modal-prices-title { font-size: .75rem; color: var(--dark-500); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 8px; }
.modal-prices-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.modal-price-card {
  flex: 1; min-width: 120px;
  background: rgba(54,47,41,.6); border: 1px solid rgba(80,72,64,.3);
  border-radius: 12px; padding: 12px; text-align: center;
}
.modal-price-card-label { color: var(--dark-400); font-size: .75rem; margin-bottom: 4px; }
.modal-price-card-value { color: var(--brand-400); font-weight: 700; font-size: 1.25rem; }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(15,13,11,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.search-overlay-inner {
  position: relative; z-index: 10; max-width: 512px; margin: 0 auto;
  padding: 32px 16px; height: 100%; display: flex; flex-direction: column;
}
.search-input-wrap { position: relative; margin-bottom: 16px; }
.search-input {
  width: 100%; padding: 16px 48px;
  background: var(--dark-900); border: 1px solid rgba(80,72,64,.5); border-radius: 16px;
  color: var(--dark-50); font-size: 1.125rem; outline: none;
  transition: border-color .2s; font-family: 'Inter', sans-serif;
}
.search-input::placeholder { color: var(--dark-500); }
.search-input:focus { border-color: rgba(249,115,22,.5); }
.search-icon-left { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--dark-400); pointer-events: none; }
.search-close-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  padding: 6px; border-radius: 8px; background: none; border: none;
  color: var(--dark-400); cursor: pointer; transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.search-close-btn:hover { color: var(--dark-200); }

.search-results { flex: 1; overflow-y: auto; padding-bottom: 32px; }
.search-count { color: var(--dark-500); font-size: .75rem; margin-bottom: 12px; padding: 0 4px; }
.search-empty { text-align: center; padding-top: 64px; color: var(--dark-500); }
.search-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: .3; }

.search-result {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 12px; margin-bottom: 8px;
  background: rgba(28,24,21,.6); border: 1px solid rgba(80,72,64,.2);
  cursor: pointer; transition: border-color .2s; text-align: left;
  text-decoration: none; color: inherit;
}
.search-result:hover { border-color: rgba(249,115,22,.2); }
.search-result-img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.search-result-placeholder {
  width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0;
  background: rgba(54,47,41,.5); display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { color: var(--dark-100); font-size: .875rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
.search-result:hover .search-result-name { color: var(--brand-400); }
.search-result-cat { color: var(--dark-500); font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.search-result-price { color: var(--brand-400); font-weight: 700; font-size: .875rem; }

/* ── Animations ── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes glow {
  from { box-shadow: 0 0 10px rgba(249,115,22,.2), 0 0 20px rgba(249,115,22,.1); }
  to { box-shadow: 0 0 15px rgba(249,115,22,.3), 0 0 30px rgba(249,115,22,.15); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}



/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,.3);
  background: rgba(15,13,11,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--brand-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s, border-color .2s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.5);
}
.back-to-top:active {
  transform: scale(.92);
}

/* ═══════════════════════════════════════════════════════ */
/* CHOPP BANNER v2 — Professional & Appetizing            */
/* ═══════════════════════════════════════════════════════ */

.cb-wrap {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 16px;
}

/* ─── DOBRADINHA (16h–20h Ter-Sex) ─── */
.cb-dob {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f00 0%, #2d1800 40%, #1a0f00 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  animation: cbDobGlow 2s ease-in-out infinite alternate;
}
.cb-dob-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(245,158,11,0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(234,88,12,0.12) 0%, transparent 50%);
  animation: cbDobGlowPulse 3s ease-in-out infinite;
}
.cb-dob-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.03) 45%,
    rgba(255,255,255,0.05) 50%,
    rgba(255,255,255,0.03) 55%,
    transparent 60%
  );
  animation: cbShine 4s ease-in-out infinite;
}
.cb-dob-body {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
}

/* Image column */
.cb-dob-img-col {
  flex-shrink: 0;
  position: relative;
}
.cb-dob-img-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(245,158,11,0.6);
  box-shadow:
    0 0 20px rgba(245,158,11,0.3),
    0 0 40px rgba(245,158,11,0.1),
    inset 0 0 15px rgba(0,0,0,0.3);
  animation: cbImgPulse 2s ease-in-out infinite alternate;
}
.cb-dob-img-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cb-dob-tag {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #1a0f00;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Info column */
.cb-dob-info {
  flex: 1;
  min-width: 0;
}
.cb-dob-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.7);
  margin-bottom: 4px;
  animation: cbLabelBlink 1.5s ease-in-out infinite alternate;
}
.cb-dob-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(245,158,11,0.3);
  margin-bottom: 6px;
}
.cb-dob-desc {
  font-size: 13px;
  font-weight: 600;
  color: rgba(253,230,138,0.9);
  margin-bottom: 6px;
}
.cb-dob-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(253,230,138,0.5);
}
.cb-dob-time svg {
  width: 11px;
  height: 11px;
  opacity: 0.6;
}

/* Badge column */
.cb-dob-badge-col {
  flex-shrink: 0;
}
.cb-dob-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a0f00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  animation: cbBadgePop 1.2s ease-in-out infinite alternate;
}
.cb-dob-badge span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

/* ─── NORMAL (preco do chopp) ─── */
.cb-norm {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1512 0%, #0f0d0b 50%, #1a1512 100%);
  border: 1px solid rgba(249,115,22,0.15);
}
.cb-norm-frost {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(249,115,22,0.06) 0%, transparent 60%);
}
.cb-norm-body {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 16px;
}
.cb-norm-img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(249,115,22,0.25);
  box-shadow: 0 0 15px rgba(249,115,22,0.08);
}
.cb-norm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cb-norm-info {
  flex: 1;
}
.cb-norm-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(249,115,22,0.6);
  margin-bottom: 2px;
}
.cb-norm-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: #f97316;
  text-shadow: 0 0 20px rgba(249,115,22,0.2);
  line-height: 1.1;
}
.cb-norm-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* ─── Responsive ─── */
@media (min-width: 480px) {
  .cb-dob-body { padding: 24px; gap: 20px; }
  .cb-dob-img-ring { width: 110px; height: 110px; }
  .cb-dob-title { font-size: 28px; }
  .cb-dob-desc { font-size: 15px; }
  .cb-dob-badge { width: 72px; height: 72px; font-size: 9px; }
  .cb-dob-badge span { font-size: 24px; }
  .cb-norm-body { padding: 20px 24px; }
  .cb-norm-img { width: 64px; height: 64px; }
  .cb-norm-price { font-size: 28px; }
}
@media (min-width: 640px) {
  .cb-dob-body { padding: 28px 32px; gap: 24px; }
  .cb-dob-img-ring { width: 130px; height: 130px; border-width: 4px; }
  .cb-dob-tag { font-size: 9px; padding: 3px 12px; }
  .cb-dob-title { font-size: 32px; }
  .cb-dob-desc { font-size: 16px; }
  .cb-dob-time { font-size: 12px; }
  .cb-dob-badge { width: 80px; height: 80px; font-size: 10px; }
  .cb-dob-badge span { font-size: 28px; }
}

/* ─── Animations ─── */
@keyframes cbDobGlow {
  from { box-shadow: 0 0 15px rgba(245,158,11,0.15), 0 4px 30px rgba(0,0,0,0.4); }
  to   { box-shadow: 0 0 30px rgba(245,158,11,0.3), 0 0 60px rgba(245,158,11,0.1), 0 4px 30px rgba(0,0,0,0.4); }
}
@keyframes cbDobGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
@keyframes cbShine {
  0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(45deg); }
  50%      { transform: translateX(30%) translateY(30%) rotate(45deg); }
}
@keyframes cbImgPulse {
  from { transform: scale(1); box-shadow: 0 0 20px rgba(245,158,11,0.3), 0 0 40px rgba(245,158,11,0.1), inset 0 0 15px rgba(0,0,0,0.3); }
  to   { transform: scale(1.04); box-shadow: 0 0 25px rgba(245,158,11,0.5), 0 0 50px rgba(245,158,11,0.15), inset 0 0 15px rgba(0,0,0,0.3); }
}
@keyframes cbLabelBlink {
  from { opacity: 1; }
  to   { opacity: 0.5; }
}
@keyframes cbBadgePop {
  from { transform: scale(1); box-shadow: 0 4px 20px rgba(245,158,11,0.4); }
  to   { transform: scale(1.08); box-shadow: 0 4px 30px rgba(245,158,11,0.6); }
}

/* ═══════════════════════════════════════════════════════ */
/* FEATURED ITEM BANNER — Item Destaque                   */
/* ═══════════════════════════════════════════════════════ */

.fi-wrap {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 16px;
}
.fi-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1512 0%, #0f0d0b 100%);
  border: 1px solid rgba(249,115,22,.2);
  display: flex;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s;
}
.fi-banner:hover {
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 20px rgba(249,115,22,.08);
}
.fi-banner:active {
  transform: scale(.99);
}

/* Image side */
.fi-img-side {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}
.fi-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}
.fi-banner:hover .fi-img {
  transform: scale(1.05);
}
.fi-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #0f0d0b 100%);
  pointer-events: none;
}

/* Info side */
.fi-info {
  flex: 1;
  padding: 20px 20px 20px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.fi-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.fi-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px;
}
.fi-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fi-price {
  font-size: 18px;
  color: #f97316;
  font-weight: 700;
  margin-bottom: 4px;
}
.fi-price .fi-var {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-right: 10px;
}
.fi-price .fi-var strong {
  color: #f97316;
  font-weight: 700;
  font-size: 14px;
}
.fi-cat {
  font-size: 10px;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}

/* Responsive */
@media (min-width: 480px) {
  .fi-img { min-height: 200px; }
  .fi-info { padding: 24px 24px 24px 12px; }
  .fi-name { font-size: 24px; }
  .fi-desc { font-size: 13px; -webkit-line-clamp: 3; }
  .fi-price { font-size: 22px; }
}
@media (min-width: 640px) {
  .fi-img-side { width: 38%; }
  .fi-img { min-height: 220px; }
  .fi-info { padding: 28px 28px 28px 16px; }
  .fi-name { font-size: 28px; }
  .fi-desc { font-size: 14px; }
  .fi-price { font-size: 24px; }
  .fi-tag { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════ */
/* COPA DO MUNDO BANNER                                   */
/* ═══════════════════════════════════════════════════════ */

.copa-wrap {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 16px;
}
.copa-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 280px;
  border: 1px solid rgba(212,166,42,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212,166,42,0.08);
}

/* Background image */
.copa-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay */
.copa-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
    linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  z-index: 1;
}

/* Content */
.copa-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

.copa-brand {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 600;
  color: #D4A62A;
  letter-spacing: 0.12em;
  text-shadow: 0 0 20px rgba(212,166,42,0.3);
  margin-bottom: 2px;
}
.copa-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.copa-headline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}
.copa-accent {
  color: #D4A62A;
  text-shadow: 0 0 25px rgba(212,166,42,0.4);
}
.copa-cta {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* Brazilian flag strip at bottom */
.copa-flag-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(
    to right,
    #009739 0%, #009739 33%,
    #FEDD00 33%, #FEDD00 66%,
    #002776 66%, #002776 100%
  );
}

/* Responsive */
@media (min-width: 480px) {
  .copa-banner { max-height: 320px; }
  .copa-content { padding: 28px 32px; }
  .copa-brand { font-size: 13px; }
  .copa-sub { font-size: 9px; margin-bottom: 16px; }
  .copa-headline { font-size: 30px; margin-bottom: 14px; }
  .copa-cta { font-size: 11px; }
}
@media (min-width: 640px) {
  .copa-banner { max-height: 360px; }
  .copa-content { padding: 36px 40px; }
  .copa-brand { font-size: 15px; }
  .copa-sub { font-size: 10px; }
  .copa-headline { font-size: 38px; }
  .copa-cta { font-size: 12px; }
  .copa-flag-strip { height: 5px; }
}
