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

body {
  font-family: 'Arial', sans-serif;
  background: #111;
  color: #fff;
}



#menu {
  top: 50px;
  left: 4%;
  right: 4%;
  background-color: #FEC700;
  border-radius: 60px;
  width: 92%;
  height: 77px;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;

}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 61px;
}

.navbar a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  font-family: baloo;
}

#homefoto {
  width: 100%;
}

#textohome {
  grid-column: 0/8;
}





.deserance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 20px;
  text-align: left;
  gap: 40px;
  background: #111;
}

.image-container {
  position: relative;
  width: 45%;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.image-container .desenho {
  position: absolute;
  top: 45%;
  left: 63%;
  width: 40%;
  pointer-events: none;
}

.text-container {
  width: 45%;
  color: red;
  text-align: left;
}

.text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-container h3 {
  font-size: 1.4rem;
  color: red;
}

.deserance-legenda {
  text-align: center;
  color: white;
  font-size: 1.1rem;
  margin-top: 20px;
  padding: 0 20px 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.deserance h2 {
  color: red;
  font-size: 2rem;
}

.deserance h3 {
  color: red;
  font-size: 1.2rem;
}

.azul-layout {
  background: #1a0a64;
  color: white;
  padding: 60px 20px;
  text-align: left;
  position: relative;
}

.bloco-central {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.media-bloco {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
}

.coluna-esquerda {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.coluna-esquerda video {
  width: 300px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.imagem1 {
  width: 280px;
  border-radius: 10px;
}

.coluna-direita {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.desenho {
  width: 80px;
  opacity: 0.85;
}

.imagem2 {
  width: 160px;
  border-radius: 10px;
}

.desenho-central {
  position: absolute;
  top: 45%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.texto-final {
  max-width: 500px;
  font-size: 1.1rem;
  margin-top: 40px;
}

.secao-compra {
  color: white;
  padding: 80px 20px;
}

.compra-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.compra-esquerda {
  flex: 1 1 45%;
  min-width: 250px;
}

.titulo-principal {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  grid-column: 2/7;
}

.botao-comprar {
  display: inline-block;
  background-color: #FFD700;
  color: #700000;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botao-comprar:hover {
  background-color: #e6c200;
}

.compra-direita {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagem-compra {
  max-width: 100%;
  width: 220px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.info-direita {
  text-align: center;
}

.titulo-peca {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info {
  font-size: 1.1rem;
  line-height: 1.5;
}

.atividades {
  background: #111;
  padding: 40px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.cards div {
  width: 30%;
}

.cards img {
  width: 100%;
  border-radius: 10px;
}

.footer {
  background: linear-gradient(to top, #1a0a64, #000);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.redes a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

.creditos {
  margin-top: 10px;
  color: #999;
}
/* === MENU DINÂMICO === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 0;
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

/* Efeito de destaque no scroll (opcional) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

/* Ajuste para a logo e itens do menu */
#menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

#logo {
    max-height: 50px;
}

#imgfestival {
  width: 100%;
}

#imgsobre {
  width: 100%;
}