/* ===== GOBLIN CANSADO - Comic Book Style CSS ===== */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&family=Oswald:wght@400;600;700&family=Cinzel+Decorative:wght@700;900&family=MedievalSharp&family=Pirata+One&family=Jim+Nightshade&display=swap');

/* ===== FONTE PRINCIPAL ===== */
@font-face {
  font-family: 'DK Woolwich';
  src: url('../fonts/DKWoolwich.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --goblin-green: #1a3a1a;
  --goblin-dark: #0d1f0d;
  --gold: #c9a227;
  --gold-light: #f0c040;
  --red-dark: #7a1515;
  --red: #a81c1c;
  --cream: #f5ead0;
  --dark-brown: #2a1a0a;
  --panel-border: #1a1a1a;
  --halftone: rgba(0,0,0,0.05);
  --white: #ffffff;
}

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

body {
  background-color: var(--goblin-dark);
  font-family: 'Comic Neue', 'Comic Sans MS', cursive;
  color: var(--cream);
  overflow-x: hidden;
}

/* ===== HALFTONE PATTERN ===== */
.halftone {
  background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 8px 8px;
}

/* ===== COMIC PANEL BORDER ===== */
.comic-panel {
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  position: relative;
}

.comic-panel::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 2px solid rgba(255,255,255,0.1);
  pointer-events: none;
  z-index: 1;
}

/* ===== NAVIGATION ===== */
#main-nav {
  background: var(--goblin-dark);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: none; /* replaced by .logo-text */
}

/* ===== LOGO OFICIAL (PNG) ===== */
.logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-text .logo-img {
  display: block;
  height: 52px;
  width: auto;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.8));
}

.logo-text.logo-hero .logo-img {
  height: auto;
  width: min(560px, 85vw);
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.9));
}

.logo-text.logo-footer .logo-img {
  height: auto;
  width: min(280px, 70vw);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--cream);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 3px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.1);
  text-shadow: 0 0 10px rgba(201,162,39,0.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--goblin-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/dungeon-bg.jpg');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.55) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,13,0.3) 0%, rgba(13,31,13,0.8) 70%, var(--goblin-dark) 100%);
}

/* Comic halftone overlay */
.hero-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.2) 1px, transparent 1px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-logo {
  display: none; /* replaced by .logo-text.logo-hero */
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--cream);
  letter-spacing: 3px;
  margin: 1rem 0 0.5rem;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
}

.hero-sub {
  font-family: 'Comic Neue', cursive;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 0.5rem 1.2rem;
  border: 3px solid var(--gold);
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  border-radius: 4px;
  text-transform: uppercase;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 5px rgba(201,162,39,0.3); }
  50% { box-shadow: 0 0 20px rgba(201,162,39,0.8); }
}

.cta-btn {
  display: inline-block;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 3px;
  padding: 0.8rem 2.5rem;
  background: var(--gold);
  color: var(--goblin-dark);
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #000;
  background: var(--gold-light);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  padding: 3rem 1rem 1rem;
  position: relative;
}

.section-title {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 rgba(0,0,0,0.8);
  -webkit-text-stroke: 1px rgba(0,0,0,0.6);
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-top: 0.5rem;
}

/* ===== COMIC SPEECH BUBBLE ===== */
.speech-bubble {
  position: relative;
  background: var(--cream);
  color: #000;
  border: 4px solid #000;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  box-shadow: 4px 4px 0 #000;
  display: inline-block;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid #000;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--cream);
  z-index: 1;
}

/* ===== BURST / STAR SHAPE ===== */
.burst {
  background: var(--gold);
  color: var(--goblin-dark);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 1rem;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 130px;
  height: 130px;
}

/* ===== ABOUT SECTION ===== */
#sobre {
  padding: 4rem 1.5rem;
  background: var(--goblin-green);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 100%;
  border: 5px solid #000;
  box-shadow: 8px 8px 0 #000;
  display: block;
}

.sobre-text h2 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 1rem;
}

.sobre-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 700;
}

.sobre-text .highlight {
  color: var(--gold);
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-box {
  background: var(--goblin-dark);
  border: 3px solid var(--gold);
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #000;
  text-align: center;
}

.info-box .icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.info-box h4 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.info-box p {
  font-size: 0.85rem;
  color: var(--cream);
  margin: 0;
}

/* ===== MENU PREVIEW SECTION ===== */
#cardapio-preview {
  padding: 4rem 1.5rem;
  background: var(--goblin-dark);
}

.cardapio-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.preview-card {
  background: var(--goblin-green);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.preview-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #000;
}

.preview-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #000;
  display: block;
}

.preview-card-body {
  padding: 1rem;
}

.preview-card-title {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  -webkit-text-stroke: 0.5px #000;
}

.preview-card-desc {
  font-size: 0.9rem;
  color: var(--cream);
  margin-top: 0.4rem;
  font-weight: 700;
}

/* ===== GAMES SECTION ===== */
#jogos {
  padding: 4rem 1.5rem;
  background: var(--red-dark);
  border-top: 6px solid #000;
  border-bottom: 6px solid #000;
  position: relative;
}

.jogos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.jogos-text h2 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000;
}

.jogos-list {
  list-style: none;
  margin-top: 1.5rem;
}

.jogos-list li {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  padding: 0.4rem 0;
  border-bottom: 2px dashed rgba(201,162,39,0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jogos-list li::before {
  content: '⚔️';
  font-size: 1rem;
}

.taxa-box {
  background: var(--gold);
  color: var(--goblin-dark);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.taxa-box h3 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  border-bottom: 3px solid #000;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.taxa-box p {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

.taxa-box .price-big {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
}

.jogos-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.game-icon-box {
  background: var(--goblin-dark);
  border: 3px solid var(--gold);
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #000;
}

.game-icon-box .gi-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.game-icon-box span:last-child {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--goblin-dark);
  border-top: 6px solid var(--gold);
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  display: none; /* replaced by .logo-text.logo-footer */
}

.footer-tagline {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--gold);
}

.footer-info {
  margin-top: 1rem;
  color: rgba(245,234,208,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-info a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(201,162,39,0.3);
  font-size: 0.8rem;
  color: rgba(245,234,208,0.4);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--goblin-dark);
  background: var(--gold);
  padding: 0.4rem 1rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: all 0.15s ease;
  text-transform: uppercase;
}

.social-links a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-down span {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto;
}

/* ===== CARDAPIO PAGE ===== */
.menu-page {
  min-height: 100vh;
  background: var(--goblin-dark);
}

.menu-hero {
  background: var(--goblin-green);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 8px 8px;
}

.menu-hero h1 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  letter-spacing: 6px;
  -webkit-text-stroke: 2px #000;
  text-shadow: 5px 5px 0 #000;
  position: relative;
}

.menu-hero p {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--cream);
  position: relative;
  margin-top: 0.5rem;
}

/* Menu Category Tabs */
.menu-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--goblin-green);
  border-bottom: 4px solid #000;
  padding: 0 1rem;
  position: sticky;
  top: 73px;
  z-index: 100;
}

.menu-tab {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 0.8rem 1.2rem;
  color: var(--cream);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Menu Sections */
.menu-section {
  display: none;
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-section.active {
  display: block;
}

/* Burger Cards */
.burger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.burger-card {
  background: var(--red-dark);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.burger-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #000;
}

.burger-card-header {
  background: var(--goblin-dark);
  padding: 1rem 1.2rem;
  border-bottom: 3px solid var(--gold);
}

.burger-card-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--gold);
  -webkit-text-stroke: 0.5px #000;
}

.burger-card-sub {
  font-size: 0.75rem;
  color: rgba(245,234,208,0.6);
  font-style: italic;
  letter-spacing: 1px;
}

.burger-card-body {
  padding: 1rem 1.2rem;
}

.burger-card-desc {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.5;
  font-weight: 700;
}

.burger-card-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 0.8rem;
  -webkit-text-stroke: 0.5px #000;
}

.burger-card-price::before {
  content: 'R$ ';
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Avada Kedavra Special */
.avada-section {
  margin-top: 2rem;
}

.avada-hero-box {
  background: linear-gradient(135deg, var(--red-dark), #3a0a0a);
  border: 5px solid var(--gold);
  box-shadow: 8px 8px 0 #000;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.avada-title {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #000;
  text-shadow: 4px 4px 0 #000;
}

.avada-base {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
  margin-top: 0.5rem;
}

.avada-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  -webkit-text-stroke: 0.5px #000;
  margin-top: 0.5rem;
}

.avada-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.avada-col {
  background: var(--goblin-dark);
  border: 3px solid var(--gold);
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #000;
}

.avada-col h3 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  border-bottom: 2px solid rgba(201,162,39,0.4);
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
}

.avada-col ul {
  list-style: none;
}

.avada-col ul li {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 700;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(245,234,208,0.15);
  display: flex;
  justify-content: space-between;
}

.avada-col ul li span {
  color: var(--gold);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
}

.avada-note {
  background: rgba(201,162,39,0.1);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 4px;
  padding: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--cream);
  font-style: italic;
  font-weight: 700;
}

/* Beer / Drinks */
.drinks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.drinks-col {
  background: var(--goblin-green);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 4px;
  overflow: hidden;
}

.drinks-col-header {
  background: var(--goblin-dark);
  padding: 1rem 1.2rem;
  border-bottom: 3px solid var(--gold);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  -webkit-text-stroke: 0.5px #000;
}

.drinks-col-body {
  padding: 1rem 1.2rem;
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 2px dashed rgba(201,162,39,0.3);
}

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

.drink-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--cream);
}

.drink-name small {
  display: block;
  font-family: 'Comic Neue', cursive;
  font-size: 0.8rem;
  color: rgba(245,234,208,0.6);
  letter-spacing: 0;
}

.drink-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: right;
}

/* Cocktail Grid */
.cocktail-note {
  background: rgba(201,162,39,0.1);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.cocktail-card {
  background: #3a1010;
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 4px;
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cocktail-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.cocktail-number {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2rem;
  color: rgba(201,162,39,0.3);
  letter-spacing: 2px;
  line-height: 1;
}

.cocktail-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--gold);
  -webkit-text-stroke: 0.3px #000;
  line-height: 1.1;
}

.cocktail-sub {
  font-size: 0.75rem;
  color: rgba(245,234,208,0.6);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.cocktail-desc {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.4;
}

.cocktail-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 0.6rem;
}

.cocktail-price::before {
  content: 'R$ ';
  font-size: 0.9rem;
}

.dado-promo-card {
  background: var(--gold);
  color: var(--goblin-dark);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  grid-column: span 2;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dado-promo-card h3 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.5);
}

.dado-promo-card p {
  font-weight: 700;
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.5;
}

.dado-promo-card .dado-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 3rem;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

/* Portions */
.porcoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.porcao-section-title {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  -webkit-text-stroke: 0.5px #000;
  grid-column: 1 / -1;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.batata-card {
  background: var(--goblin-green);
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.batata-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.batata-card-header {
  background: #4a3000;
  padding: 0.7rem 1rem;
  border-bottom: 3px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.batata-card-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.batata-card-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 1px;
}

.batata-card-desc {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 700;
}

.mega-card {
  background: linear-gradient(135deg, #1a4a00, #0d2a00);
  border: 4px solid var(--gold);
  box-shadow: 6px 6px 0 #000;
  border-radius: 4px;
  padding: 1.2rem;
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  transition: transform 0.2s ease;
}

.mega-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #000;
}

.mega-card-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.mega-card-sub {
  font-size: 0.85rem;
  color: rgba(245,234,208,0.7);
  font-style: italic;
}

.mega-card-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  -webkit-text-stroke: 0.5px #000;
}

/* Sobremesas */
.sobremesa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.sobremesa-card {
  background: var(--dark-brown);
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 4px;
  padding: 1.2rem;
  transition: transform 0.2s ease;
}

.sobremesa-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.sobremesa-name {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.sobremesa-desc {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 700;
  margin: 0.4rem 0;
}

.sobremesa-price {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== LINGUICA PAGE ===== */
.linguica-page {
  min-height: 100vh;
  background: var(--goblin-dark);
}

.linguica-hero {
  background: var(--red-dark);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 6px solid var(--gold);
}

.linguica-title {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--gold);
  letter-spacing: 6px;
  -webkit-text-stroke: 2px #000;
  text-shadow: 5px 5px 0 #000;
}

.linguica-sub {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--cream);
  margin-top: 0.5rem;
}

.video-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 5px solid var(--gold);
  box-shadow: 8px 8px 0 #000;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
}

.video-caption {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--cream);
  margin-top: 1.5rem;
}

.fun-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fun-section h2 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000;
  text-align: center;
  margin-bottom: 2rem;
}

.fun-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.fun-fact {
  background: var(--goblin-green);
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 4px;
  padding: 1.2rem;
  transition: transform 0.2s ease;
}

.fun-fact:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.fun-fact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.fun-fact h3 {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.fun-fact p {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--goblin-dark);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 1rem;
    flex-direction: column;
  }

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

  .nav-hamburger {
    display: flex;
  }

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

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

  .drinks-layout {
    grid-template-columns: 1fr;
  }

  .dado-promo-card {
    grid-column: span 1;
  }

  .mega-card {
    grid-column: span 1;
  }

  .menu-tabs {
    top: 63px;
  }

  .cocktail-grid {
    grid-template-columns: 1fr;
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }

  .jogos-visual {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COMIC PANELS LAYOUT ===== */
.comic-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
  overflow: hidden;
  border-radius: 4px;
}

.comic-strip .panel {
  border: 3px solid #000;
  overflow: hidden;
  position: relative;
}

.comic-strip .panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PRICE TAG ===== */
.price-tag {
  background: var(--gold);
  color: var(--goblin-dark);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 0.2rem 0.8rem;
  border: 3px solid #000;
  box-shadow: 2px 2px 0 #000;
  display: inline-block;
  transform: rotate(-2deg);
}

/* ===== D20 — ROLAGEM DA CAIXA DE SUGESTÕES ===== */
.d20-btn {
  margin-top: 1.5rem;
  display: inline-block;
  background: var(--gold);
  color: var(--goblin-dark);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 0.6rem 1.4rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  border-radius: 4px;
  cursor: pointer;
  animation: d20-pulso 1.6s ease-in-out infinite;
  transition: transform 0.15s, box-shadow 0.15s;
}
.d20-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.d20-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }

@keyframes d20-pulso {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(240,192,64,0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(240,192,64,0.7)); }
}

.d20-stage { margin-top: 1.5rem; }

.d20 {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  filter: drop-shadow(4px 4px 0 #000);
}
.d20 svg { width: 100%; height: 100%; display: block; }
.d20-face  { fill: var(--gold); stroke: #000; stroke-width: 3; stroke-linejoin: round; }
.d20-inner { fill: var(--gold-light); stroke: #000; stroke-width: 2.5; stroke-linejoin: round; }
.d20-lines line { stroke: #000; stroke-width: 2; opacity: 0.55; }
.d20-num {
  position: absolute;
  left: 0; right: 0;
  top: 45%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.9rem;
  color: var(--goblin-dark);
  line-height: 1;
  pointer-events: none;
}

.d20.rolando { animation: d20-rola 0.5s linear infinite; }
@keyframes d20-rola {
  0%   { transform: translateY(0)     rotate(0deg)   scale(1); }
  25%  { transform: translateY(-22px) rotate(90deg)  scale(1.05); }
  50%  { transform: translateY(0)     rotate(180deg) scale(0.95); }
  75%  { transform: translateY(-12px) rotate(270deg) scale(1.03); }
  100% { transform: translateY(0)     rotate(360deg) scale(1); }
}

.d20.parou { animation: d20-pouso 0.45s cubic-bezier(.3,1.6,.5,1); }
@keyframes d20-pouso {
  0%   { transform: scale(0.8); }
  100% { transform: scale(1); }
}

.d20.d20-critico { filter: drop-shadow(4px 4px 0 #000) drop-shadow(0 0 18px #f0c040); }
.d20.d20-critico .d20-face { fill: #f0c040; }
.d20.d20-falha .d20-face,
.d20.d20-falha .d20-inner { fill: var(--red); }
.d20.d20-falha .d20-num { color: var(--cream); }
.d20.d20-falha.parou { animation: d20-treme 0.5s ease; }
@keyframes d20-treme {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px) rotate(-6deg); }
  40% { transform: translateX(8px)  rotate(6deg); }
  60% { transform: translateX(-5px) rotate(-3deg); }
  80% { transform: translateX(5px)  rotate(3deg); }
}

.d20-frase {
  margin-top: 1.2rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 2px 2px 0 #000;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.d20-frase.visivel { opacity: 1; transform: translateY(0); }

.d20-volta {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(245,234,208,0.55);
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .d20-btn, .d20.rolando, .d20.parou { animation: none; }
}

/* ===== CTA SUGESTÕES (página /linguiça) ===== */
.sugestao-cta-wrap { padding: 1rem 1.5rem 3rem; }

.sugestao-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  background: var(--gold);
  color: var(--goblin-dark);
  border: 5px solid #000;
  border-radius: 6px;
  box-shadow: 8px 8px 0 #000;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.sugestao-cta:hover {
  transform: translate(-4px, -4px) rotate(-0.5deg);
  box-shadow: 12px 12px 0 #000;
  background: var(--gold-light);
}
.sugestao-cta:active { transform: translate(3px, 3px); box-shadow: 3px 3px 0 #000; }

.sugestao-cta-icone {
  font-size: clamp(3rem, 10vw, 4.5rem);
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}
.sugestao-cta-titulo {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: 3px;
  line-height: 1.05;
  text-transform: uppercase;
}
.sugestao-cta-sub {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.2rem);
  opacity: 0.85;
}
.sugestao-cta-seta {
  margin-top: 0.8rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  letter-spacing: 2px;
  background: var(--goblin-dark);
  color: var(--gold);
  padding: 0.6rem 1.6rem;
  border: 3px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
}

/* ===== D20 FLUTUANTE (canto da tela, todas as páginas) ===== */
.gd20-face  { fill: var(--gold); stroke: #000; stroke-width: 3; stroke-linejoin: round; }
.gd20-inner { fill: var(--gold-light); stroke: #000; stroke-width: 2.5; stroke-linejoin: round; }
.gd20-lines line { stroke: #000; stroke-width: 2; opacity: 0.55; }

.gd20-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  width: 70px;
  height: 70px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  filter: drop-shadow(3px 3px 0 #000) drop-shadow(0 0 10px rgba(240,192,64,0.45));
  animation: gd20-balanca 4s ease-in-out infinite;
  transition: transform 0.15s ease;
}
.gd20-fab svg { width: 100%; height: 100%; display: block; }
.gd20-fab:hover { transform: scale(1.1) rotate(-8deg); animation-play-state: paused; }
.gd20-fab:active { transform: scale(0.95); }
.gd20-fab-num {
  position: absolute;
  left: 0; right: 0; top: 45%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--goblin-dark);
  pointer-events: none;
}
.gd20-fab-tip {
  position: absolute;
  right: 82px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--goblin-dark);
  color: var(--gold);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 2px 2px 0 #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  animation: gd20-dica 9s ease-in-out 2s infinite;
}
.gd20-fab:hover .gd20-fab-tip { opacity: 1; animation: none; }

@keyframes gd20-balanca {
  0%, 82%, 100% { transform: rotate(0deg); }
  86% { transform: rotate(-14deg) scale(1.05); }
  90% { transform: rotate(12deg) scale(1.05); }
  94% { transform: rotate(-6deg); }
  97% { transform: rotate(3deg); }
}
@keyframes gd20-dica {
  0%, 60%, 100% { opacity: 0; }
  66%, 92% { opacity: 1; }
}

/* Modal */
body.gd20-aberto { overflow: hidden; }
.gd20-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(5, 12, 5, 0.82);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gd20-modal[hidden] { display: none; }
.gd20-modal.gd20-show { opacity: 1; }

.gd20-painel {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.5rem 1.8rem;
  background: var(--goblin-dark);
  border: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: 8px 8px 0 #000;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(.3,1.5,.5,1);
}
.gd20-show .gd20-painel { transform: scale(1); }

.gd20-fechar {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
}
.gd20-fechar:hover { opacity: 1; color: var(--gold); }

.gd20-titulo {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(245,234,208,0.6);
  margin-bottom: 1.2rem;
}

.gd20-dado {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  perspective: 600px;
  filter: drop-shadow(5px 5px 0 #000);
}
.gd20-dado svg { width: 100%; height: 100%; display: block; }
.gd20-num {
  position: absolute;
  left: 0; right: 0; top: 45%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2.6rem;
  color: var(--goblin-dark);
  line-height: 1;
  pointer-events: none;
}

.gd20-dado.gd20-rolando { animation: gd20-gira 0.55s linear infinite; }
@keyframes gd20-gira {
  0%   { transform: translateY(0)     rotateX(0deg)   rotateZ(0deg)   scale(1); }
  25%  { transform: translateY(-30px) rotateX(70deg)  rotateZ(90deg)  scale(1.08); }
  50%  { transform: translateY(0)     rotateX(0deg)   rotateZ(180deg) scale(0.92); }
  75%  { transform: translateY(-18px) rotateX(-70deg) rotateZ(270deg) scale(1.05); }
  100% { transform: translateY(0)     rotateX(0deg)   rotateZ(360deg) scale(1); }
}
.gd20-dado.gd20-parou { animation: gd20-pouso 0.5s cubic-bezier(.3,1.7,.5,1); }
@keyframes gd20-pouso {
  0%   { transform: scale(0.75); }
  100% { transform: scale(1); }
}

.gd20-dado.gd20-critico { filter: drop-shadow(5px 5px 0 #000) drop-shadow(0 0 24px #f0c040); }
.gd20-dado.gd20-critico .gd20-face { fill: #f0c040; }
.gd20-dado.gd20-falha .gd20-face,
.gd20-dado.gd20-falha .gd20-inner { fill: var(--red); }
.gd20-dado.gd20-falha .gd20-num { color: var(--cream); }
.gd20-dado.gd20-falha.gd20-parou { animation: gd20-treme 0.5s ease; }
@keyframes gd20-treme {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px) rotate(-7deg); }
  40% { transform: translateX(10px)  rotate(7deg); }
  60% { transform: translateX(-6px)  rotate(-3deg); }
  80% { transform: translateX(6px)   rotate(3deg); }
}

.gd20-frase {
  min-height: 3.2em;
  margin-top: 1.3rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  letter-spacing: 1.5px;
  line-height: 1.3;
  color: var(--gold);
  text-shadow: 2px 2px 0 #000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gd20-frase.gd20-visivel { opacity: 1; transform: translateY(0); }

.gd20-denovo {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--goblin-dark);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 0.6rem 1.4rem;
  border: 3px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.gd20-denovo:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.gd20-denovo:disabled { opacity: 0.45; cursor: wait; }

@media (max-width: 600px) {
  .gd20-fab { width: 58px; height: 58px; right: 14px; bottom: 14px; }
  .gd20-fab-num { font-size: 0.95rem; }
  .gd20-fab-tip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gd20-fab, .gd20-fab-tip, .gd20-dado.gd20-rolando, .gd20-dado.gd20-parou { animation: none; }
}

/* =====================================================================
   TEMA VINHO + PATTERNS
   Alterna vinho / verde entre as seções e cobre quase tudo com textura
   (adaguinhas, retícula de quadrinhos, listras e raios de HQ).
   ===================================================================== */
:root {
  --vinho: #5c1024;
  --vinho-dark: #3a0915;
  --vinho-light: #7a1a33;

  /* adaguinhas douradas bem sutis */
  --pat-adagas: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23c9a227' fill-opacity='.10'%3E%3Cg transform='translate(18 18) rotate(45)'%3E%3Cpath d='M0-13 2.2-3h-4.4z'/%3E%3Crect x='-5.5' y='-3' width='11' height='2.2' rx='1'/%3E%3Crect x='-1.1' y='-.8' width='2.2' height='6'/%3E%3Ccircle cy='6.6' r='1.7'/%3E%3C/g%3E%3Cg transform='translate(54 54) rotate(-135)'%3E%3Cpath d='M0-13 2.2-3h-4.4z'/%3E%3Crect x='-5.5' y='-3' width='11' height='2.2' rx='1'/%3E%3Crect x='-1.1' y='-.8' width='2.2' height='6'/%3E%3Ccircle cy='6.6' r='1.7'/%3E%3C/g%3E%3Ccircle cx='54' cy='18' r='1.4'/%3E%3Ccircle cx='18' cy='54' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
  /* espadas cruzadas, um pouco maiores, pra variar */
  --pat-espadas: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='%23c9a227' fill-opacity='.08'%3E%3Cg transform='translate(45 45)'%3E%3Cg transform='rotate(40)'%3E%3Cpath d='M0-20 2.4-5h-4.8z'/%3E%3Crect x='-6' y='-5' width='12' height='2.4' rx='1'/%3E%3Crect x='-1.2' y='-2.6' width='2.4' height='8'/%3E%3Ccircle cy='6.8' r='1.9'/%3E%3C/g%3E%3Cg transform='rotate(-40)'%3E%3Cpath d='M0-20 2.4-5h-4.8z'/%3E%3Crect x='-6' y='-5' width='12' height='2.4' rx='1'/%3E%3Crect x='-1.2' y='-2.6' width='2.4' height='8'/%3E%3Ccircle cy='6.8' r='1.9'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='0' cy='0' r='1.6'/%3E%3Ccircle cx='90' cy='0' r='1.6'/%3E%3Ccircle cx='0' cy='90' r='1.6'/%3E%3Ccircle cx='90' cy='90' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  /* retícula de quadrinhos */
  --pat-reticula: radial-gradient(rgba(0,0,0,0.28) 1.2px, transparent 1.6px);
  --pat-reticula-ouro: radial-gradient(rgba(201,162,39,0.10) 1.2px, transparent 1.6px);
  /* listras diagonais de HQ */
  --pat-listras: repeating-linear-gradient(45deg, rgba(0,0,0,0.16) 0 2px, transparent 2px 11px);
  /* raios de explosão de HQ */
  --pat-raios: repeating-conic-gradient(from 0deg at 50% 60%, rgba(240,192,64,0.07) 0 5deg, transparent 5deg 12deg);
}

/* --- Fundo geral --- */
body,
.menu-page,
.linguica-page {
  background-color: var(--goblin-dark);
  background-image: var(--pat-adagas);
  background-size: 72px 72px;
}

/* --- Navegação --- */
#main-nav,
.nav-links {
  background-color: var(--vinho-dark);
  background-image: var(--pat-reticula);
  background-size: 7px 7px;
}

/* --- Seções vinho (alternando com verde) --- */
#sobre,
#jogos,
#sugestoes,
#footer {
  background-color: var(--vinho);
  background-image: var(--pat-adagas), var(--pat-reticula);
  background-size: 72px 72px, 8px 8px;
}
#jogos {
  background-color: var(--vinho-dark);
  background-image: var(--pat-raios), var(--pat-espadas);
  background-size: auto, 90px 90px;
}
#footer {
  background-color: var(--vinho-dark);
}

/* --- Seções verdes com textura --- */
#cardapio-preview {
  background-color: var(--goblin-dark);
  background-image: var(--pat-espadas), var(--pat-reticula-ouro);
  background-size: 90px 90px, 9px 9px;
}

/* --- Topos das páginas (raios de HQ) --- */
.menu-hero,
.linguica-hero {
  background-color: var(--vinho);
  background-image: var(--pat-raios), var(--pat-reticula);
  background-size: auto, 8px 8px;
}
.menu-tabs {
  background-color: var(--vinho-dark);
  background-image: var(--pat-listras);
}

/* --- Cards verdes: retícula --- */
.preview-card,
.fun-fact,
.drinks-col,
.batata-card,
.info-box,
.avada-col,
.game-icon-box,
.drinks-col-header,
.burger-card-header,
.comic-panel {
  background-image: var(--pat-reticula);
  background-size: 7px 7px;
}

/* --- Cards vinho: listras de HQ --- */
.burger-card,
.cocktail-card,
.sobremesa-card {
  background-color: var(--vinho);
  background-image: var(--pat-listras);
}
.cocktail-card { background-color: var(--vinho-dark); }
.avada-hero-box {
  background: var(--pat-raios), linear-gradient(135deg, var(--vinho-light), var(--vinho-dark));
}
.batata-card-header {
  background-image: var(--pat-listras);
}
.mega-card {
  background: var(--pat-listras), linear-gradient(135deg, #1a4a00, #0d2a00);
}

/* --- Página /linguiça (estilos inline da página) --- */
.linguica-page .comic-panel-linguica {
  background-color: var(--vinho);
  background-image: var(--pat-listras);
}
.linguica-page .rule-card {
  background-image: var(--pat-reticula);
  background-size: 7px 7px;
}

/* --- D20 popup --- */
.gd20-painel,
.gd20-fab-tip {
  background-color: var(--vinho-dark);
  background-image: var(--pat-reticula);
  background-size: 7px 7px;
}

/* ===== D20 3D (three.js) ===== */
.gd20-dado.gd20-3d,
.d20.gd20-3d {
  width: 220px;
  height: 220px;
  filter: none;
  perspective: none;
}
.gd20-3d > svg,
.gd20-3d > .gd20-num,
.gd20-3d > .d20-num { display: none; }
.gd20-3d.gd20-rolando,
.gd20-3d.gd20-parou,
.gd20-3d.rolando,
.gd20-3d.parou { animation: none; }
.gd20-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.gd20-3d-critico .gd20-canvas {
  filter: drop-shadow(0 0 18px rgba(240,192,64,0.9)) drop-shadow(0 0 40px rgba(240,192,64,0.5));
  transition: filter 0.3s ease;
}
.gd20-3d-falha .gd20-canvas {
  filter: drop-shadow(0 0 16px rgba(255,30,30,0.8));
  animation: gd20-treme 0.5s ease;
}
.gd20-faisca {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px currentColor;
  animation: gd20-faisca 0.9s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes gd20-faisca {
  0%   { transform: translate(0, 0) scale(1.2); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.2); opacity: 0; }
}
@media (max-width: 600px) {
  .gd20-dado.gd20-3d, .d20.gd20-3d { width: 190px; height: 190px; }
}

/* ===== LOGO EM MARCA DAGUA ATRAS DO D20 ===== */
.gd20-3d::before {
  content: '';
  position: absolute;
  inset: -20% -42%;
  background: url('../images/logo-oficial.png') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.gd20-3d .gd20-canvas { position: relative; z-index: 1; }
.gd20-3d-critico::before { opacity: 0.3; transition: opacity 0.4s ease; }

/* =====================================================================
   BAÚ DO GOBLIN (bau.html)
   ===================================================================== */
.bau-page {
  background-color: var(--goblin-dark);
  background-image: var(--pat-espadas), var(--pat-reticula-ouro);
  background-size: 90px 90px, 9px 9px;
}
.bau-hero .bau-hero-sub {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  color: rgba(245,234,208,0.65);
}

.bau-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 16px 5rem;
  text-align: center;
}
.bau-dica {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 3px 3px 0 #000;
  min-height: 1.4em;
  margin-bottom: 3.5rem;
}

.baus {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 4vw, 48px);
}

/* --- o baú --- */
.bau {
  --cor: var(--gold-light);
  position: relative;
  width: clamp(96px, 27vw, 210px);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bau-flutua 3.2s ease-in-out var(--atraso, 0s) infinite;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
  -webkit-tap-highlight-color: transparent;
}
.bau svg { display: block; width: 100%; height: auto; overflow: visible; }
.bau-tampa, .bau-corpo { display: block; width: 100%; position: relative; }
.bau-tampa { z-index: 2; transform-origin: 50% 100%; margin-bottom: -2px; }
.bau-corpo { z-index: 1; }

.bau-madeira   { fill: var(--vinho); }
.bau-tabua     { fill: none; stroke: var(--vinho-dark); stroke-width: 3; }
.bau-faixa     { fill: var(--gold); stroke: #000; stroke-width: 2.5; }
.bau-contorno  { fill: none; stroke: #000; stroke-width: 5; stroke-linejoin: round; }
.bau-contorno-fino { stroke-width: 3; }
.bau-pregos circle { fill: #7a5a10; stroke: #000; stroke-width: 1; }
.bau-cadeado { transform-box: fill-box; transform-origin: 50% 0; }

.bau-sombra {
  display: block;
  width: 90%;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: radial-gradient(rgba(0,0,0,0.55), transparent 70%);
}
.bau-num {
  margin-top: 0.6rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 3px;
  color: rgba(245,234,208,0.55);
}

.bau:hover:not(.descartado),
.bau:focus-visible {
  filter: drop-shadow(0 0 16px rgba(240,192,64,0.55));
  outline: none;
}
.bau:hover:not(.descartado):not(.aberto) .bau-tampa { transform: translateY(-5px) rotate(-2deg); transition: transform 0.2s ease; }

@keyframes bau-flutua {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- escolha --- */
.bau-escolhendo .bau { animation: none; cursor: default; }
.bau.descartado {
  opacity: 0.18;
  filter: grayscale(1) blur(1px);
  transform: translateY(24px) scale(0.85);
}
.bau.escolhido {
  transform: scale(1.18);
  z-index: 3;
}
.bau.tremendo { animation: bau-treme 0.14s linear infinite; filter: drop-shadow(0 0 22px var(--cor)); }
.bau.tremendo.mimico { animation-duration: 0.08s; }
@keyframes bau-treme {
  0%, 100% { transform: scale(1.18) rotate(0deg) translateX(0); }
  25% { transform: scale(1.18) rotate(-3deg) translateX(-4px); }
  75% { transform: scale(1.18) rotate(3deg)  translateX(4px); }
}

/* --- abrindo --- */
.bau.aberto { filter: drop-shadow(0 0 28px var(--cor)); }
.bau.aberto .bau-tampa { animation: bau-abre 0.75s cubic-bezier(.25,1.5,.5,1) forwards; }
@keyframes bau-abre {
  0%   { transform: perspective(500px) translateY(0) rotateX(0) rotate(0); }
  35%  { transform: perspective(500px) translateY(-38%) rotateX(20deg) rotate(-6deg); }
  100% { transform: perspective(500px) translateY(-62%) rotateX(48deg) rotate(-14deg) translateX(-8%); }
}
.bau.aberto .bau-cadeado { animation: bau-cadeado 0.7s ease-in forwards; }
@keyframes bau-cadeado {
  0%   { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(30px, 90px) rotate(80deg); opacity: 0; }
}
.bau.mimico.aberto .bau-tampa { animation: bau-morde 0.35s ease-in-out 3 alternate forwards; }
@keyframes bau-morde {
  0%   { transform: perspective(500px) translateY(0) rotateX(0); }
  100% { transform: perspective(500px) translateY(-40%) rotateX(35deg) rotate(-8deg); }
}

/* luz saindo do baú */
.bau-luz {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 260%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cor) 0%, transparent 45%),
    repeating-conic-gradient(from 0deg, color-mix(in srgb, var(--cor) 55%, transparent) 0 8deg, transparent 8deg 20deg);
  -webkit-mask: radial-gradient(circle, #000 20%, transparent 68%);
          mask: radial-gradient(circle, #000 20%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.bau.aberto .bau-luz { animation: bau-luz 0.9s ease-out 0.15s forwards, bau-luz-gira 8s linear infinite; }
@keyframes bau-luz {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
}
@keyframes bau-luz-gira {
  to { rotate: 360deg; }
}

.bau-particula {
  position: absolute;
  left: 50%;
  top: 40%;
  font-size: clamp(1rem, 3vw, 1.5rem);
  pointer-events: none;
  z-index: 4;
  text-shadow: 0 0 10px currentColor;
  animation: bau-particula 1.5s cubic-bezier(.15,.7,.3,1) forwards;
}
@keyframes bau-particula {
  0%   { transform: translate(-50%, 0) scale(0.3) rotate(0); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), var(--dy)) scale(1) rotate(var(--gira)); opacity: 0; }
}

/* --- card do prêmio --- */
.bau-premio {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(5, 12, 5, 0.8);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.bau-premio[hidden] { display: none; }
.bau-premio.show { opacity: 1; }

.bau-premio-card {
  --cor: var(--gold-light);
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: auto;
  padding: 2.4rem 1.5rem 1.8rem;
  text-align: center;
  background-color: var(--vinho-dark);
  background-image: var(--pat-adagas), var(--pat-reticula);
  background-size: 72px 72px, 7px 7px;
  border: 4px solid var(--cor);
  border-radius: 6px;
  box-shadow: 8px 8px 0 #000, 0 0 40px color-mix(in srgb, var(--cor) 45%, transparent);
  transform: translateY(60px) scale(0.6);
  transition: transform 0.55s cubic-bezier(.3,1.6,.5,1);
}
.bau-premio.show .bau-premio-card { transform: translateY(0) scale(1); }
.bau-premio-card.lendario { animation: bau-lendario 1.6s ease-in-out infinite; }
@keyframes bau-lendario {
  0%, 100% { box-shadow: 8px 8px 0 #000, 0 0 30px rgba(240,192,64,0.45); }
  50%      { box-shadow: 8px 8px 0 #000, 0 0 60px rgba(240,192,64,0.9); }
}

.bau-premio-raridade {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--cor);
  color: #1a0a00;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 0.3rem 1.2rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  border-radius: 4px;
  white-space: nowrap;
}
.bau-premio-achou {
  font-weight: 700;
  color: rgba(245,234,208,0.7);
  font-size: 0.95rem;
}
.bau-premio-emoji {
  font-size: 4.5rem;
  line-height: 1.1;
  margin: 0.6rem 0 0.2rem;
  filter: drop-shadow(0 0 16px var(--cor));
  animation: float 3s ease-in-out infinite;
}
.bau-premio-cat {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--cor);
}
.bau-premio-nome {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: 3px;
  line-height: 1.05;
  color: var(--gold);
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000;
  margin: 0.2rem 0 0.4rem;
}
.bau-premio-sub {
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
}
.bau-premio-desc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: rgba(245,234,208,0.75);
}
.bau-premio-preco {
  display: inline-block;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--goblin-dark);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  padding: 0.3rem 1rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  border-radius: 4px;
}
.bau-premio-goblin {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(245,234,208,0.5);
}
.bau-premio-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.bau-btn {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.05rem;
  letter-spacing: 2px;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--goblin-dark);
  border: 3px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.bau-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.bau-btn-sec { background: var(--goblin-green); color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .bau, .bau.tremendo, .bau-premio-card.lendario, .bau-premio-emoji { animation: none; }
}

/* Botões do topo da home */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1rem;
}
.cta-btn-bau {
  background: var(--vinho);
  color: var(--gold);
}
.cta-btn-bau:hover {
  background: var(--vinho-light);
  color: var(--gold-light);
}

/* Selo da categoria em cima de cada baú + nome maior */
.bau-selo {
  position: absolute;
  top: -0.9em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1;
  filter: drop-shadow(2px 2px 0 #000);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bau:hover:not(.descartado) .bau-selo { transform: translateX(-50%) translateY(-6px) scale(1.1); }
.bau.aberto .bau-selo { opacity: 0; transform: translateX(-50%) translateY(-30px); }
.bau .bau-num {
  font-size: clamp(1.1rem, 3.6vw, 1.7rem);
  color: var(--gold);
  text-shadow: 2px 2px 0 #000;
}
.baus { padding-top: 1.5rem; }

/* ===== CORREÇÕES MOBILE ===== */
/* impede o navegador (Samsung Internet / Chrome Android) de inflar o texto sozinho */
html {
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
}

/* modais nunca passam da largura da tela */
.bau-premio,
.gd20-modal {
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
}
.bau-premio-card,
.gd20-painel {
  min-width: 0;
  max-width: min(440px, calc(100vw - 32px));
  overflow-wrap: anywhere;
}
.bau-premio-nome,
.bau-premio-sub,
.bau-premio-desc,
.bau-premio-goblin,
.gd20-frase { overflow-wrap: break-word; }
.bau-premio-acoes .bau-btn {
  flex: 1 1 150px;
  max-width: 100%;
  text-align: center;
}
.bau-main { overflow-x: clip; }

/* home: "rolar" não fica em cima dos botões */
@media (max-width: 600px) {
  #hero { padding-bottom: 5.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .cta-btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
    width: min(100%, 320px);
  }
  .bau-premio-card { padding: 2.2rem 1.1rem 1.5rem; }
  .bau-premio-emoji { font-size: 3.6rem; }
}

/* =====================================================================
   PROMOÇÃO DADO D10 (cardapio.html)
   ===================================================================== */
.dado-promo-btn {
  width: 100%;
  font: inherit;
  color: var(--goblin-dark);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.dado-promo-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #000;
  background: var(--gold-light);
}
.dado-promo-btn:active { transform: translate(2px, 2px); box-shadow: 3px 3px 0 #000; }
.dado-promo-texto { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.dado-promo-titulo {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.5);
}
.dado-promo-desc {
  font-weight: 700;
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.5;
}
.dado-promo-cta {
  margin-top: 0.5rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.15rem;
  letter-spacing: 2px;
  background: var(--vinho);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  border: 3px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  animation: d20-pulso 1.6s ease-in-out infinite;
}
@media (max-width: 600px) {
  .dado-promo-btn { flex-direction: column; gap: 0.6rem; }
  .dado-promo-titulo { font-size: 1.6rem; }
}

/* --- modal --- */
.d10-painel {
  background-color: var(--goblin-dark);
  background-image: var(--pat-adagas), var(--pat-reticula);
  background-size: 72px 72px, 7px 7px;
}
.d10-modal.d10-travado .gd20-fechar { visibility: hidden; }
.d10-tela[hidden] { display: none; }

.d10-titulo {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 1rem;
}

.d10-aviso {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  background: var(--vinho);
  border: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 4px 4px 0 #000;
  padding: 1rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  letter-spacing: 2px;
  color: var(--cream);
  animation: d10-chama 1.2s ease-in-out infinite;
}
.d10-aviso strong {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  color: var(--gold-light);
  text-shadow: 3px 3px 0 #000;
  font-weight: normal;
  line-height: 1.1;
}
.d10-aviso span { font-size: 1.1rem; }
.d10-aviso-icone { font-size: 2.4rem !important; line-height: 1; }
@keyframes d10-chama {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-1.5deg) scale(1.02); }
}
.d10-regra {
  margin: 1.1rem 0 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cream);
}
.d10-regra b { color: var(--gold-light); }

.d10-btn {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--goblin-dark);
  border: 3px solid #000;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.d10-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; }
.d10-btn-sec {
  background: transparent;
  color: rgba(245,234,208,0.7);
  border-color: rgba(245,234,208,0.3);
  box-shadow: none;
  font-size: 1rem;
}
.d10-btn-sec:hover { box-shadow: none; color: var(--cream); }

/* --- palco do dado + contagem --- */
.d10-palco { position: relative; }
.d10-dado {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.d10-contagem {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 7.5rem;
  color: var(--cream);
  -webkit-text-stroke: 4px #000;
  text-shadow: 6px 6px 0 #000, 0 0 30px rgba(0,0,0,0.8);
  pointer-events: none;
  z-index: 2;
}
.d10-contagem.d10-pulso { animation: d10-pulso 1s ease-out; }
@keyframes d10-pulso {
  0%   { transform: scale(1.8); opacity: 0; }
  25%  { transform: scale(1);   opacity: 1; }
  80%  { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; }
}

/* --- resultado --- */
.d10-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 4rem;
  color: var(--gold-light);
  background: var(--vinho);
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  clip-path: polygon(50% 0, 100% 42%, 50% 100%, 0 42%);
  -webkit-text-stroke: 2px #000;
  animation: d10-surge 0.5s cubic-bezier(.3,1.7,.5,1);
}
.d10-numero-dez { background: var(--gold); color: var(--vinho-dark); -webkit-text-stroke: 0; }
@keyframes d10-surge {
  0%   { transform: scale(0.3) rotate(-30deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.d10-drink {
  margin-top: 0.8rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: clamp(2rem, 8vw, 2.6rem);
  letter-spacing: 3px;
  line-height: 1.05;
  color: var(--gold);
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000;
}
.d10-drink-sub { font-style: italic; font-weight: 700; color: var(--cream); margin-top: 0.3rem; }
.d10-mostre {
  margin-top: 1.1rem;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  letter-spacing: 2px;
  color: var(--cream);
}
.d10-hora { font-size: 0.85rem; font-weight: 700; color: rgba(245,234,208,0.55); }

/* --- giro repetido --- */
.d10-painel.d10-alerta { border-color: #ff4040; box-shadow: 8px 8px 0 #000, 0 0 40px rgba(255,64,64,0.45); }
.d10-fraude {
  margin-top: 1.2rem;
  padding: 1rem;
  background: rgba(168,28,28,0.25);
  border: 3px dashed #ff4040;
  border-radius: 6px;
  text-align: left;
}
.d10-fraude[hidden] { display: none; }
.d10-carimbo {
  display: block;
  width: fit-content;
  margin: -1.9rem auto 0.8rem;
  background: #ff4040;
  color: #fff;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 3px;
  padding: 0.3rem 1rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  transform: rotate(-3deg);
  animation: d10-carimba 0.4s cubic-bezier(.3,1.8,.5,1);
}
@keyframes d10-carimba {
  0%   { transform: rotate(-3deg) scale(2.5); opacity: 0; }
  100% { transform: rotate(-3deg) scale(1);   opacity: 1; }
}
.d10-fraude-txt { font-weight: 700; color: var(--cream); text-align: center; }
.d10-valido {
  margin: 0.5rem 0 0.9rem;
  text-align: center;
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #5fd35f;
  text-shadow: 2px 2px 0 #000;
}
.d10-valido b { font-weight: normal; font-size: 1.8rem; }
.d10-valido small {
  display: block;
  font-family: 'Comic Neue', cursive;
  font-size: 0.8rem;
  letter-spacing: 0;
  color: rgba(245,234,208,0.6);
  text-shadow: none;
}
.d10-hist-titulo {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(245,234,208,0.6);
  margin-bottom: 0.4rem;
}
.d10-historico { list-style: none; padding: 0; margin: 0; }
.d10-historico li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(245,234,208,0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}
.d10-historico li b {
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-weight: normal;
  font-size: 1.2rem;
  color: var(--gold);
}
.d10-historico li em { font-style: normal; font-size: 0.8rem; white-space: nowrap; }
.d10-historico li.ok { background: rgba(95,211,95,0.12); }
.d10-historico li.tentativa em { color: #ff7070; }

/* --- fallback 2D --- */
.d10-2d {
  width: 150px;
  height: 150px;
  margin: 35px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vinho);
  border: 4px solid #000;
  clip-path: polygon(50% 0, 100% 42%, 50% 100%, 0 42%);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 3.5rem;
  color: var(--gold-light);
}
.d10-2d-ocioso { animation: gd20-balanca 1.2s ease-in-out infinite; }
.d10-2d-rolando { animation: d20-rola 0.5s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .d10-aviso, .dado-promo-cta, .d10-contagem.d10-pulso { animation: none; }
}

/* ===== D10 — área do atendente ===== */
.d10-chave {
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  font-size: 1rem;
  opacity: 0.22;
  cursor: pointer;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.d10-chave:hover, .d10-chave:focus-visible { opacity: 0.8; filter: none; }
.d10-modal.d10-travado .d10-chave { visibility: hidden; }

.d10-senha-form { margin-top: 0.4rem; }
.d10-senha-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #0d1f0d;
  border: 3px solid var(--gold);
  border-radius: 4px;
  color: var(--cream);
  font-family: 'DK Woolwich', 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 8px;
  text-align: center;
  outline: none;
  box-shadow: inset 2px 2px 0 rgba(0,0,0,0.5);
}
.d10-senha-input:focus { border-color: var(--gold-light); }
.d10-senha-input.d10-treme { animation: gd20-treme 0.4s ease; border-color: #ff4040; }
.d10-senha-msg {
  min-height: 1.4em;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ff7070;
}
.d10-liberado-icone {
  font-size: 4rem;
  line-height: 1;
  animation: d10-surge 0.5s cubic-bezier(.3,1.7,.5,1);
}

/* ===== MODAIS NO CELULAR: rolam quando não cabem ===== */
.gd20-modal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  align-items: flex-start;
}
.gd20-modal > .gd20-painel { margin: auto; }

/* chavinha no topo, à esquerda (espelho do ✕) */
.d10-chave {
  top: 8px;
  bottom: auto;
  left: 10px;
  width: 36px;
  height: 36px;
}

@media (max-width: 600px), (max-height: 700px) {
  .d10-painel { padding: 1.6rem 1rem 1.2rem; }
  .d10-titulo { font-size: 1.1rem; margin-bottom: 0.7rem; padding: 0 2rem; }
  .d10-aviso { padding: 0.7rem; }
  .d10-aviso-icone { font-size: 1.8rem !important; }
  .d10-aviso strong { font-size: 1.6rem; }
  .d10-regra { margin: 0.8rem 0 0.9rem; font-size: 0.95rem; }
  .d10-btn { padding: 0.65rem 0.8rem; font-size: 1.05rem; }
  .d10-dado { width: 180px; height: 180px; }
  .d10-contagem { font-size: 6rem; }
  .d10-numero { width: 90px; height: 90px; font-size: 3.2rem; }
  .d10-drink { font-size: 1.9rem; }
  .d10-fraude { padding: 0.8rem 0.6rem; }
}

/* ===== D20 — ERRO CRÍTICO (1) ===== */
.gd20-erro {
  display: block;
  font-size: clamp(2rem, 9vw, 2.8rem);
  color: #ff3030;
  -webkit-text-stroke: 1px #000;
  text-shadow: 3px 3px 0 #000, 0 0 20px rgba(255,48,48,0.7);
  letter-spacing: 3px;
  animation: gd20-treme 0.5s ease 2;
}
.gd20-expulsao,
.d20-volta {
  font-family: 'DK Woolwich', 'Bangers', cursive;
}
.gd20-expulsao {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(245,234,208,0.7);
}
.gd20-modal.gd20-expulso .gd20-painel {
  border-color: #ff3030;
  box-shadow: 8px 8px 0 #000, 0 0 50px rgba(255,48,48,0.6);
}
