/*
  Mariachi Oro - Estilos principais
  Paleta: #FF6F00 (laranja pôr do sol), #4A1B2A (bordô), #FFD700 (ouro), #2E7D32 (verde cacto), #FFFFFF (texto)
  Comentários e classes em português
*/
body {
  background: linear-gradient(135deg, #FF6F00 0%, #4A1B2A 100%);
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 18px;
}

/* Cabeçalho */
.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw 12px 5vw;
  background: rgba(74,27,42,0.92);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #FFD700;
  font-weight: 700;
}
.logo img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}
.menu-desktop ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.menu-desktop a:hover {
  color: #FFD700;
}
.menu-mobile {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  background:  url('/images/bg.webp') center center / cover no-repeat;
  opacity: 0.95;
  animation: parallax 20s linear infinite alternate;
}
@keyframes parallax {
  0% { background-position: 50% 0, center center; }
  100% { background-position: 50% 100px, center center; }
}
.hero-conteudo {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 16px 32px 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #FFD700;
  margin-bottom: 16px;
  animation: fadeIn 0.8s;
}
.hero-desc {
  font-size: 1.4rem;
  margin-bottom: 18px;
  animation: fadeIn 1.2s;
}
.hero-idade {
  font-size: 1rem;
  color: #fff;
  background: rgba(74,27,42,0.7);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  animation: fadeIn 1.5s;
}
.btn-jogar {
  display: inline-block;
  background: #FFD700;
  color: #4A1B2A;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 16px 40px;
  box-shadow: 0 4px 16px #FFD70055, 0 2px 8px #4A1B2A22;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  animation: pulse 1.5s infinite;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-jogar:hover {
  background: #B71C1C;
  color: #FFD700;
  transform: scale(1.05);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #FFD70088; }
  70% { box-shadow: 0 0 0 16px #FFD70000; }
  100% { box-shadow: 0 0 0 0 #FFD70000; }
}
.btn-jogar::after {
  content: '▶';
  color: #FFD700;
  font-size: 1.1em;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.btn-jogar:hover::after {
  opacity: 1;
}

/* Sobre o Jogo */
.sobre {
  padding: 64px 5vw 32px 5vw;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  margin: 32px auto;
  max-width: 1100px;
  animation: fadeIn 0.8s;
}
.sobre h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 18px;
}
.simbolos {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.simbolos img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #FFD70022;
  box-shadow: 0 2px 8px #FFD70044;
  object-fit: contain;
}

/* Festa Dourada */
.festa-dourada {
  padding: 48px 5vw 32px 5vw;
  max-width: 900px;
  margin: 0 auto 32px auto;
  animation: fadeIn 1.1s;
}
.festa-dourada h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 18px;
}

/* Por que Escolher */
.por-que-escolher {
  padding: 48px 5vw 32px 5vw;
  max-width: 900px;
  margin: 0 auto 32px auto;
  animation: fadeIn 1.2s;
}
.por-que-escolher h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 18px;
}
.por-que-escolher ul {
  list-style: disc inside;
  color: #FFD700;
  font-size: 1.1rem;
  margin-left: 24px;
}
.por-que-escolher li {
  color: #fff;
  margin-bottom: 10px;
}
.por-que-escolher a {
  color: #FFD700;
  text-decoration: underline;
}

/* Ritmo da Noite */
.ritmo-da-noite {
  padding: 48px 5vw 32px 5vw;
  max-width: 900px;
  margin: 0 auto 32px auto;
  animation: fadeIn 1.3s;
}
.ritmo-da-noite h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 18px;
}

/* FAQ */
.faq {
  padding: 48px 5vw 32px 5vw;
  max-width: 900px;
  margin: 0 auto 32px auto;
  animation: fadeIn 1.4s;
}
.faq h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 18px;
}
.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #fff;
  margin: 0;
}

/* Rodapé */
.rodape {
  background: rgba(74,27,42,0.98);
  color: #fff;
  padding: 32px 5vw 24px 5vw;
  text-align: center;
  border-top: 2px solid #FFD70044;
  margin-top: 48px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 24px #FFD70022;
  position: relative;
}
.rodape-topo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 18px;
  text-align: left;
}
.rodape-sobre {
  flex: 2 1 260px;
  min-width: 220px;
}
.rodape-sobre h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.rodape-sobre p {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 8px 0;
}
.rodape-links {
  flex: 1 1 180px;
  min-width: 160px;
}
.rodape-links h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.rodape-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rodape-links li {
  margin-bottom: 6px;
}
.rodape-links a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.rodape-links a:hover {
  color: #fff;
}
.rodape-contato {
  flex: 1 1 180px;
  min-width: 160px;
}
.rodape-contato h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.rodape-contato p {
  font-size: 1rem;
  margin: 0 0 6px 0;
}
.rodape-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.rodape-social a svg {
  display: block;
  transition: transform 0.2s, filter 0.2s;
}
.rodape-social a:hover svg {
  filter: drop-shadow(0 2px 8px #FFD70088);
  transform: scale(1.12) rotate(-3deg);
}
.rodape-icones {
  margin: 18px 0 0 0;
}
.rodape-copy {
  font-size: 0.95rem;
  color: #FFD700;
  margin-top: 12px;
}
.rodape-ornamento {
  margin-top: 18px;
}

/* Botões */
.btn-gold, .btn-outline {
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  margin: 0 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-gold {
  background: #FFD700;
  color: #4A1B2A;
}
.btn-gold:hover {
  background: #B71C1C;
  color: #FFD700;
  transform: scale(1.05);
}
.btn-outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.btn-outline:hover {
  background: #FFD700;
  color: #4A1B2A;
  transform: scale(1.05);
}

/* Pop-up 18+ */
.popup-idade {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74,27,42,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.4s;
}
.popup-conteudo {
  background: #FFD700;
  color: #4A1B2A;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 32px #4A1B2A88;
  text-align: center;
  max-width: 350px;
  animation: fadeIn 0.7s;
}
.popup-conteudo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}
.popup-botoes {
  margin-top: 18px;
}

/* Banner Cookies */
.banner-cookies {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(74,27,42,0.92);
  color: #fff;
  border-radius: 16px;
  padding: 18px 32px;
  box-shadow: 0 2px 8px #FFD70044;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1500;
  font-size: 1rem;
  opacity: 0.98;
}
.cookies-botoes {
  display: flex;
  gap: 8px;
}
.banner-cookies a {
  color: #FFD700;
  text-decoration: underline;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 900px) {
  .hero h1 { font-size: 42px; }
  .sobre, .festa-dourada, .por-que-escolher, .ritmo-da-noite, .faq {
    padding: 32px 3vw 24px 3vw;
  }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cabecalho { flex-direction: column; padding: 16px 2vw 8px 2vw; }
  .logo img { width: 36px; height: 36px; }
  .logo { font-size: 1.2rem; }
  .menu-desktop { display: none; }
  .menu-mobile { display: block; }
  .menu-mobile button {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 120;
  }
  .hamburger {
    display: block;
    width: 32px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
  }
  .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger::before { top: -10px; }
  .hamburger::after { top: 10px; }
  .menu-mobile-nav {
    position: fixed;
    top: 0; right: -100vw;
    width: 70vw;
    height: 100vh;
    background: #4A1B2A;
    opacity: 1;
    box-shadow: -4px 0 16px #FFD70044;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 24px 24px 24px;
    transition: right 0.4s cubic-bezier(.77,0,.18,1);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    border-left: 3px solid #FFD70088;
  }
  .menu-mobile-nav.ativo { right: 0; }
  .menu-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .menu-mobile-nav li {
    margin-bottom: 24px;
  }
  .menu-mobile-nav a {
    color: #FFD700;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
  }
  /* Кнопка закрытия мобильного меню */
  #fechar-menu {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #FFD700;
    color: #4A1B2A;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #FFD70055;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 999;
  }
  #fechar-menu:hover {
    background: #B71C1C;
    color: #FFD700;
    transform: scale(1.08);
  }
  .hero h1 { font-size: 36px; }
  .hero-conteudo { padding: 32px 8px 24px 8px; }
  .simbolos { gap: 12px; }
  .simbolos img { width: 56px; height: 56px; }
} 

/* Galeria da Festa */
.galeria-festa {
  background: linear-gradient(120deg, #FF6F00 80%, #FFD700 100%);
  padding: 56px 5vw 32px 5vw;
  margin: 0 auto 32px auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px #FFD70022;
  position: relative;
  animation: fadeIn 1.5s;
}
.galeria-festa h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.icon-galeria { font-size: 2rem; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}
.galeria-item {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 2px 12px #FFD70033;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px 12px 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 1.7s;
}
.galeria-item:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px #FFD70077;
  background: #FFD70022;
}
.galeria-item img {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #FFD70055;
  background: #fff8;
  object-fit: cover;
}
.galeria-item span {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 1px 4px #4A1B2A44;
}
.ornamento-topo, .ornamento-baixo {
  width: 100%;
  margin-bottom: -8px;
}
.ornamento-baixo { margin-top: 16px; }

/* Depoimentos dos Jogadores */
.depoimentos {
  background: linear-gradient(120deg, #4A1B2A 80%, #FFD700 100%);
  padding: 56px 5vw 32px 5vw;
  margin: 0 auto 32px auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px #FFD70022;
  animation: fadeIn 1.7s;
}
.depoimentos h2 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.icon-depo { font-size: 2rem; }
.depoimentos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.depo-card {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 2px 12px #FFD70033;
  padding: 24px 18px 18px 18px;
  max-width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2s;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.depo-card:hover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 8px 32px #FFD70077;
  background: #FFD70022;
}
.depo-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFD700;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px #FFD70055;
  background-size: cover;
  background-position: center;
  border: 3px solid #FFD700;
}
.depo-card blockquote {
  color: #fff;
  font-style: italic;
  margin: 0 0 12px 0;
  text-align: center;
  font-size: 1.08rem;
}
.depo-nome {
  color: #FFD700;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 4px #4A1B2A44;
}

/* Декоративные разделители */
section h2 {
  position: relative;
  z-index: 1;
}
section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700 0%, #FF6F00 100%);
  border-radius: 2px;
  margin: 12px auto 0 auto;
  opacity: 0.7;
}

/* Усиление анимаций */
.galeria-item, .depo-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}
.galeria-item:nth-child(1) { animation-delay: 0.1s; }
.galeria-item:nth-child(2) { animation-delay: 0.2s; }
.galeria-item:nth-child(3) { animation-delay: 0.3s; }
.galeria-item:nth-child(4) { animation-delay: 0.4s; }
.galeria-item:nth-child(5) { animation-delay: 0.5s; }
.galeria-item:nth-child(6) { animation-delay: 0.6s; }
.depo-card:nth-child(1) { animation-delay: 0.2s; }
.depo-card:nth-child(2) { animation-delay: 0.4s; }
.depo-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Улучшение кнопок */
.btn-jogar, .btn-gold, .btn-outline {
  box-shadow: 0 4px 16px #FFD70055, 0 2px 8px #4A1B2A22;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-jogar::after, .btn-gold::after {
  content: '▶';
  color: #FFD700;
  font-size: 1.1em;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.btn-jogar:hover::after, .btn-gold:hover::after {
  opacity: 1;
}

/* Дополнительные декоративные элементы */
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(0deg, #FFD70033 0%, transparent 100%);
  pointer-events: none;
}

/* Мобильная адаптация новых секций */
@media (max-width: 900px) {
  .galeria-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 18px; }
  .depoimentos-lista { gap: 18px; }
}
@media (max-width: 600px) {
  .galeria-festa, .depoimentos {
    padding: 32px 2vw 18px 2vw;
    border-radius: 18px;
  }
  .galeria-item img { width: 48px; height: 48px; }
  .depo-card { max-width: 98vw; min-width: 0; padding: 16px 6px 12px 6px; }
} 