@import "~react-image-gallery/styles/css/image-gallery.css";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', 'sans-serif';
  /* overflow-x: hidden; */
}

.background {
  background-image: url('./images/Tema2024.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.background-curva {
  background-image: url('./images/ARCO.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  background-position: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textcopy {
  background-color: #0147A9;
  width: 100%;
  margin: 50px 0;
  height: 10vh;
}

.textcopy-text {
  color: #fff;
}

.cardsend {
  display: flex;
  margin-bottom: 55px;
  flex-direction: row;
}

.videoCNM {
  width: 480px;
  height: 250px;
}

.estaduais {
  width: 65%;
}

.card-convidados {
  transition: transform 0.3s ease-in-out;
}

.card-convidados:hover {
  transform: scale(1.1);
}

.card-convidados .overlay {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-convidados:hover .overlay {
  opacity: 1;
}


.img-autoridades {
  width: 300px;
  height: 300px;
}

@media screen and (max-width: 1280px) {
  
  .img-autoridades {
    width: auto;
    height: auto;
  }

  .image-footer {
    width: 25%;
  }

}

@media screen and (max-width: 800px) {

  .cardsend {
    flex-direction: column;
  }

  .videoCNM {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75vw;
    height: 20vh;
  }

  .image-footer {
    width: 75%
  }

  .estaduais {
    width: 90%;
  }

  .div-card-convidados {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}