/* Estilos personalizados para a seta do carrossel */
.slick-prev:before,
.slick-next:before {
  color: #fff9f0 !important;
  font-size: 40px !important;
}

.slick-prev:before{
  margin-left: -2rem !important;
}

/* Popup Início */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Define a cor e a transparência do fundo escurecido */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 3%;
  left: 15%;
  height: 87vh;
  width: 70%;
  padding: 5rem;
  border-radius: 5px;
  position: absolute;
}

.popup-content {
  text-align: center;
}

/* Popup Início */
.popup-overlay-contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Define a cor e a transparência do fundo escurecido */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-contact {
  background-color: #fff9f0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 3%;
  left: 15%;
  height: 87vh;
  width: 70%;
  padding: 5rem;
  border-radius: 5px;
  position: absolute;
}

.popup-content-contact {
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  padding: 1rem;
  color: #fff9f0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
/* Popup Fim */

/*FAQ Inicio*/
.faq-question {
  cursor: pointer;
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transition: transform 0.3s;
}

.arrow.up {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.arrow.down {
  transform: translate(-50%, -50%) rotate(45deg);
}

.closed {
  display: none;
}

#contactPopup{
  text-align: center;
  display: none;
  flex-direction: column;
  margin: 0 auto;
}

#contactPopup h3{
  color: #000;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 3rem;
}

#contactPopup .contact-form div{
  width: 50%;
  margin: 0 auto;
  text-align: start;
}

#contactPopup .contact-form div button{
  margin: 2rem auto;
  padding: 1rem 3rem;
  background-color: #000;
  color: #fff9f0;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
}

#contactPopup .contact-form div button:hover{
  background-color: #fff9f0;
  border: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

#contactPopup .contact-form label{
  color: #000;
  font-weight: bold;
}

#contactPopup .contact-form input{
  color: #000;
  border: 1px solid #000;
  padding: 1rem 0;
  margin-bottom: 2rem;
  width: 100%;
}

#contactPopup .contact-form textarea{
  color: #000;
  border: 1px solid #000;
  padding: 1rem 1rem;
  width: 100%;
}
/*FAQ Fim*/
