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

:root {
  /* Cores Principais */
  --bg-color: #0b0b0d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --primary-red: #d90429;
  --primary-red-hover: #ef233c;
  --text-white: #f8f9fa;
  --text-gray: #a0a0a5;
  --border-color: rgba(255, 255, 255, 0.07);
  --border-red: rgba(217, 4, 41, 0.25);
  
  /* Fontes */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Header Estilizado */
header {
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(217, 4, 41, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo-container {
  margin-bottom: 0.75rem;
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(217, 4, 41, 0.3));
}

header h1 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-white);
}

header h1 span {
  color: var(--primary-red);
}

header p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

/* Container Principal */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem 1.25rem;
}

/* Seções do Cardápio */
.menu-section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  border-left: 3px solid var(--primary-red);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-red);
}

/* Grid de Itens */
.items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Card Individual de Bebida */
.drink-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 1rem;
}

.drink-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.08);
}

.drink-img-container {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drink-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.drink-card:hover .drink-img {
  transform: scale(1.08);
}

.drink-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.drink-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.drink-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 0.15rem;
}

.drink-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
  white-space: nowrap;
}

/* Footer / Rodapé */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-gray);
  background: linear-gradient(0deg, rgba(217, 4, 41, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

footer p {
  margin-bottom: 0.5rem;
}

footer strong {
  color: var(--text-white);
}

/* Responsividade extra */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.85rem;
  }
  
  .drink-card {
    padding: 0.9rem 1rem;
  }
}
