* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  background-color: #022B54;
  padding: 20px;
  display: flex;
  justify-content: center;
}

header .container {
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  img{
    height: 4rem;
  }
}
.logo {
  height: 60px;
}
.btn-contato {
  background-color: #FB8510;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.btn-contato:hover{
    background-color: #a72b05;
}
.btn-participar:hover{
    background-color: #a72b05;
}
.hero-img {
  display: block;
  margin: auto;
}
.sobre {
  text-align: center;
  margin-top: 2rem;
}
.sobre p{
    width: 60%;
    margin: auto;
    font-size: 1.2rem;
}
.sobre img{
    width: 12rem;
    height: 12rem;
    margin-bottom: 1rem;
}

.sobre-logo {
  height: 80px;
  margin-bottom: 20px;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.galeria img {
  width: 25rem;
  width: 25rem;
  border-radius: 10px;
  margin: 2rem;
}

.inspiracao {
  text-align: center;
  height: 100px;
  background-color: #022B54;
  margin-bottom: 5rem;
  align-items: center;
  justify-content: center;

}

.simbolo {
  z-index: 2;
  height: 100px;
}

.texto {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 80%;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-bottom: 4rem;
  img{
    width: 15rem;
  }
}
.texto p{
    width: 40%;
    font-size: 1.2rem;
}

.imagem-lateral {
  width: 180px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.festa{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  h2{
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: blueviolet;
  }
  img{
    width: 30rem;
    border-radius: 2rem;
    border: 3px solid blueviolet;
    margin: 2rem;
  }
  h3{
    font-size: 1rem;
    color: #333;
  }
}

.video-section {
  background-color: #022B54;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.video-section h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  margin-bottom: 20px;
}

.video iframe {
  width: 100%;
  max-width: 600px;
  height: 315px;
  border-radius: 10px;
}

.descricao-video {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.bazar {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-inline: 12rem;
  padding-bottom: 5rem;
  background-color: #022B54;
  color: white;
  padding-top: 2rem;
  gap: 13rem;
  img{
      width: 23rem;
      height: 23rem;
  }
}

.bazar-div{
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin: auto;
    h2{
      font-size: 2rem;
    }
    p{
        font-size: 1.2rem;
    }
}
.endereco {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  p{
    font-size: 1.4rem;
  }
}
.midia{
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 2rem;
}
.endereco img {
  height: 25rem;
  margin-bottom: 10px;
}
.local{
    display: flex;
    margin: auto;
    width: 70%;
    margin-block: 3rem;
    gap: 4rem;
}
.chamada p{
  font-size: 2rem;
}

footer {
  background-color: #000;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

footer .chamada {
  margin-bottom: 20px;
}

.btn-participar {
  display: inline-block;
  margin-top: 10px;
  background-color: #FB8510;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  width: 20rem;
}

.social {
  margin: 20px 0;
}

.social img {
  width: 24px;
  height: 100%;
  margin: 0px 10px;
   transition: transform 0.3s ease
}
.social img:hover{
  transform: scale(1.2);
  filter: brightness(1.5);

}

.copy {
  font-size: 0.8rem;
  color: #aaa;
}

@media (max-width: 1000px) {
  .hero img{
    width: 80vw;
  }
  .sobre p {
    width: 80vw;
  }
  .galeria{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    img{
        width: 75%;
    }
  }
  .texto{
    flex-direction: column;
    p{
        width: 80vw;
    }
  }
  .bazar{
    margin: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: center;
    margin-bottom:0;
    padding-bottom: 4rem;
    gap: 2rem;
}

.bazar-div{
    margin: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    p{
        width: 80vw;
        padding-bottom: 0;
    }
    h2{
        margin-top: 2rem;
        font-size: 1.8rem;
        margin: 1rem 2rem;
    }
  }
  .local{
    flex-direction: column;
    width: 80vw;
  }
  .midia{
      margin: auto;
      align-items: center;
      justify-content: center;
      display: flex;
      padding: 0;
    img{
        width: 90%;
    }
  }
  .texto{
    img{
        width: 70%;
    }
  }
  .video-section{
    h2{
        font-size: 2rem;
    }
  }
  .endereco{
     margin: auto;
      align-items: center;
      justify-content: center;
      display: flex;
      padding: 0;
    img{
        width: 90%;
        height: 90%;
    }
    p{
        width: 80vw;
        text-align: center;
    }
  }
  .chamada p{
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .festa img{
    width: 22rem;
  }
  .festa h3{
    text-align: center;
  }
  .festa h2{
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }
}
