/* Reset simples */
* {
  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;
}




.contacto .info h1 {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 25px 0 7px 0;
    white-space: nowrap; /* NÃO deixa quebrar linha */
}
.contacto .info p {
  font-size: 0.96rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.8;   /* espaço entre linhas */
  max-width: 500px;  /* força quebra elegante */
}

.ima{
    width: 280px;
    height: auto;
    margin: 20px 0 0 0;
    z-index: 0;
    right: 56px;
    position: relative; /* fica no fluxo normal */
}

/* 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: right;
  margin-top: -220px; /* espaço entre o conteúdo p e o modal */
  z-index: 2;
}

/* Modal central */
.modal {
  background: #fff;
  padding: 30px 20px 0 20px; /* padding interno */
  width: 700px;
  max-width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  height: 350px; /* 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: 5px;
  margin-top: 10px;
  background-color: #F36D53;
  text-decoration: none;
  color: #fff;
  padding: 7px 5px; 
  width: 60%;
  transition: 0.2s;
    justify-content: center;
    font-size: 0.9rem;
 
}

.contacto .lin:hover {
  background-color: #585757;
}
 .contacto .lin img {
    width: 20px;
    height: auto;
  }

    .seta{
    display: none;
  }

  
.depoimento-box{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 25px 25px 0;
}
.dep h1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 400px 20px 0;
}



/* 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;
}

.dot{
  width: 10px;
  height: 10px;
  background: #c4c0c0;
  border-radius: 50%;
}

.dot.ativo{
  background: #F36D53;
}


 

/* rodape */

:root {
  --bg: #eaf8fb;
  --accent: #ef6b57;
  --accent-dark: #d65444;
  --blue-bar: #06a0d6;
  --text: #0f1720;
  --muted: rgba(15, 23, 32, 0.6);
}

/* =========================
   SUB-RODAPÉ MOBILE
========================= */

.subrodape {
  background: var(--bg);
  padding: 40px 20px;
}

.subrodape-inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* =========================
   COLUNAS OCUPAM 100%
========================= */

.sub-left,
.sub-center,
.sub-right {
  width: 100%;
}
