.servicos {
  background-color: var(--background);

}

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 2em;
  }

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


  .servicos-box {
    width: 100%;
    margin: 0 auto;
    border-radius: 1em;
    background-color: var(--tidewater-darker);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: hidden;
    min-height: 450px;
    -webkit-box-shadow: -1px 10px 16px -11px rgba(0,0,0,0.8);
    -moz-box-shadow: -1px 10px 16px -11px rgba(0,0,0,0.8);
    box-shadow: -1px 10px 16px -11px rgba(0,0,0,0.8);

  }

  .servicos-header {
    width: 100%;
  }
  

  .sevicos-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
  }

  .servicos-body {
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 250px;
    justify-content: space-around;
  }

  .servicos-body .section-paragraph {
    width: 80%;
  }

  .servico-button-link {
    background-color: var(--highlight);
    padding: .75em 0;
    color: var(--background);
    border-radius: .25em;
    text-align: center;
    width: 40%;
  
 
    
     
 }


 .servico-button-link:hover {
  cursor: pointer;
  background-color: var(--background);
  border: solid 1px var(--highlight);
  color: white;
  
 }
 
 .servico-button {
     background-color: transparent;
     border: none;
     color: inherit;
    
     font-family: 'Outfit', sans-serif;
     font-size: .75em;
     letter-spacing: .25em;
     font-weight: 800;
     text-transform: uppercase;
 }

 .servico-button:hover {
  cursor: pointer;
 }


 .swiper-wrapper {
    padding-bottom: 3em;
   

  
 }


 .swiper-pagination-bullet {
    background-color: var(--highlight)!important;
 }



 .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10001; /* Garanta que o overlay esteja acima de outros elementos */
}


.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--tidewater-darker);
  width: 95%;
  margin: 0 auto;
  max-width: 600px;
  min-height: 50vh;
  max-height: 80vh;
  border-radius: 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: none;
  overflow: hidden;
  overflow-y: auto;
}

.popup::-webkit-scrollbar-track {
  background-color: var(--background);
}

.popup::-webkit-scrollbar {
  width: .25em;
  background: var(--highlight);
  border: none;
}

.popup::-webkit-scrollbar-thumb {
  background: var(--highlight);

}



.popup.active {
  display: block; /* Exibir o popup quando a classe active estiver presente */
}

.popup-header {
  position: relative;
  width: 100%;
}

.popup-header img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;

}

.close-button {
  position: absolute;
  top: 1em;
  right: 1em;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  background-color: var(--background);
  border-radius: 2em;
}

.popup-body {
  margin: 2em 0;
  padding: 2em;
  display: flex;
  flex-direction: column;
}



.popup-body .section-paragraph {
  margin: 2em 0;

}



