:root {
  --primary-color: #c9a96e;
  --secondary-color: #f5e6c8;
  --bg-dark: #1a0404;
  --text-gold: #e8c97a;
  --accent-burgundy: #7a1e1e;
  --deep-burgundy: #2d0808;
  --transition: all 0.3s ease;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  font-family: 'Cinzel', Georgia, serif;
  overflow-x: hidden;
  /* Proteção contra seleção */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.cover {
  width: 100%;
  max-width: 480px; /* Alargado ligeiramente para tablets pequenos */
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-burgundy) 0%, #4a0f0f 45%, var(--deep-burgundy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centralizado verticalmente para melhor equilíbrio */
  padding: 40px 24px;
  animation: fadeIn 1.2s ease-out;
}

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

.logo-circle {
  width: clamp(100px, 25vw, 140px); /* Responsivo */
  height: clamp(100px, 25vw, 140px);
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ou cover, dependendo do arquivo original */
  padding: 10px; /* Adiciona um respiro se for um logo circular */
}


.restaurant-name {
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.restaurant-name .title {
  display: block;
  font-size: clamp(24px, 7vw, 36px); /* Texto responsivo */
  font-weight: 700;
  color: var(--text-gold);
  letter-spacing: 0.15em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.restaurant-name .subtitle {
  display: block;
  font-size: clamp(12px, 3.5vw, 16px);
  font-weight: 400;
  color: var(--text-gold);
  letter-spacing: 0.2em;
  margin-top: 8px;
  opacity: 0.9;
}

.cardapio-label {
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  color: var(--text-gold);
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.cardapio-label::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--primary-color);
}

.lang-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.lang-btn {
  width: 100%;
  max-width: 240px;
  padding: 16px 0;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: var(--primary-color);
  color: #3a0a0a;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lang-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.lang-btn:active {
  transform: scale(0.98);
}

/* Ajustes para telas muito pequenas */
@media (max-height: 600px) {
  .cover {
    padding: 20px 24px;
  }
  .logo-circle {
    margin-bottom: 1rem;
  }
  .cardapio-label {
    margin-bottom: 2rem;
  }
}
