* {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}






.bady_cont {
  margin-bottom: 10%;
}



.img-wrapper {
  position: relative;
  display: block;
}

.img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;

}

/* pseudo-elemento para sombra/gradiente */
.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;


  /* Gradiente de sombra da cor #357186: escuro em cima, claro embaixo */
  background: linear-gradient(to bottom,
      rgba(38, 85, 102, 0.7) 0%,
      /* topo escuro */
      rgba(26, 105, 134, 0.507) 50%,
      /* meio */
      rgba(15, 136, 180, 0.959) 100%
      /* base clara */
    );

  z-index: 1;
  pointer-events: none;
  /* não interfere em cliques */
}



.principal {
  position: relative;
}

.bady_cont .principal h1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  color: #000;
  font-weight: 600;
  font-size: 4rem;
  z-index: 2;
}

.bady_cont .principal p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 25px 0 0 0;
  color: #353434;
  font-weight: 300;
  font-size: 1rem;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.contacto .info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin: 25px 0 7px 0;
  color: #000;
}

.contacto .info p {
  font-size: 1rem;
  /* font-family: "Poppins", sans-serif; */
  /* font-weight: 300; */
  margin-bottom: 40px;
  color: #000;
}

.ima {
  margin-top: -250px;
  /* espaço entre o conteúdo p e o modal */
  margin-left: 750px;
  /* espaço entre o conteúdo p e o modal */
  z-index: 2;
  position: relative;
  /* fica no fluxo normal */
  width: 280px;
  height: auto;
}

/* Remove o position absolute do modal-overlay */
.modal-overlay {
  position: relative;
  /* fica no fluxo normal */
  background: transparent;
  /* fundo transparente, não cobre tudo */
  display: flex;
  justify-content: center;
  margin-top: -120px;
  /* espaço entre o conteúdo p e o modal */
  z-index: 2;
}

/* Modal central */
.modal {
  background: #fff;
  padding: 30px 80px 0;
  /* padding interno */
  border-top-right-radius: 100px;
  width: 1000px;
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  height: auto;
  /* altura ajusta ao conteúdo */
}

/* Botão enviar */
.contacto .lin {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background-color: #F36D53;
  text-decoration: none;
  color: #fff;
  padding: 7px 15px;
  font-size: 1.2rem;
  width: 33%;
  transition: 0.2s;
}

.contacto .lin:hover {
  background-color: #585757;
}


.depoimento-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.dep h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 550;
}


/* Setas laterais */
.seta {
  width: 43px;
  /* antes 45px */
  height: 43px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border: solid 1px #F36D53;
}

/* imagem menor */
.seta img {
  width: 20px;
  /* antes 22px */
  height: auto;
  color: #F36D53
}

.seta:hover {
  background: #F36D53;
}

.seta:hover img {
  filter: brightness(0) invert(1);
}

/* Balão central */
.po {
  position: relative;
  background: #F36D53;
  border-radius: 15px;
  padding: 25px 30px;
  max-width: 700px;
  color: #fff;
  text-align: center;

}

.po p {
  font-weight: 300;
  font-size: 1rem;
}

/* seta em baixo */
.arrow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #F36D53;
}


/* USER */
.user {
  margin-top: 30px;
  text-align: center;
}

.user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.user h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
}

.user h3 span {
  font-weight: 400;
  font-size: 0.9rem;
}

/* PAGINAÇÃO */
.paginacao {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #c4c0c0;
  border-radius: 50%;
 
}
.dot.ativo {
  background: #F36D53;
}

@supports (-webkit-touch-callout: none) {

  *{
    font-family: 'Poppins', sans-serif !important;
  }

}