/*CONTATO*/

.contato-header {
  background: linear-gradient(90deg, #37AF8F 40%, #007EA7 60%);
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-top: 80px;
}

/* TEXTO */
.contato-text {
  text-align: center;
  font-size: 1.2rem;
  padding: 15px 0;
}

/* CONTEÚDO */
.contato-section {
  padding: 50px 0 80px;
}

.contato-wrapper {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}


/* FORMULÁRIO */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.contato-form input,
.contato-form textarea {
  padding: 14px;
  border: 1px solid #353D3F;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  max-width: 1100px;
}

.contato-form textarea {
    height: 180px;
    resize: none;
}

.contato-form button {
  background-color: #1D89AA;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 1.05rem;
  border-radius: 2px;
  font-weight: 600;
  width: 350px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contato-form button:hover {
  background-color: #1D99AA;
}

/* BLOCO INFERIOR */
.info-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 60px auto;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
}

.mapa {
flex: 1;
min-width: 350px;
max-width: 600px;
}

.mapa iframe {
    width: 150%;
    height: 300px;
    border-radius: 8px;
    border: none;
}

.info-texto {
  flex: 1;
  margin-left: 220px;
  min-width: 300px;
  margin-bottom: 35px ;
}

.info-texto h2, h3 {
  color: #1D89AA;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.info-texto p{
    font-size: 1rem;
    line-height: 1.6;
    color: #353D3F;
    margin: 8px 0;
}

.info-texto a {
  color: #353D3F;
  text-decoration: none;
  font-weight: 600;
}

.info-texto a:hover {
  text-decoration: underline;
}

/* REDES SOCIAIS */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
/*RESPONSIVIDADE — TELAS MÉDIAS (tablets e monitores menores)*/
@media (max-width: 1300px) {

  /* Contato */
  .contato-form input,
  .contato-form textarea {
    width: 90%;
  }

  .info-texto {
    margin-left: 0;
    text-align: left;
  }

  .mapa iframe {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 1000px) {
  .info-conteudo,
  .info-texto{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mapa iframe {
    width: 100%;
  }
}
/*RESPONSIVIDADE — MOBILE (celulares)*/

@media (max-width: 768px) {

  /* CONTATO — TÍTULOS */
  .contato-header {
    margin-top: 40px;
  }

  /* FORMULÁRIO */
  .contato-form input,
  .contato-form textarea {
    width: 95%;
    font-size: 1rem;
  }

  .contato-form button {
    width: 70%;
  }

  /* BLOCO INFERIOR */
  .info-conteudo {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .info-texto {
    margin-left: 0;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  /* MAPA */
  .mapa {
    width: 100%;
  }

  .mapa iframe {
    width: 100%;
  }
}

/*RESPONSIVIDADE — MOBILE PEQUENO (celulares até 480px)*/
@media (max-width: 480px) {

  /* Títulos */
  .contato-text {
    font-size: 1rem;
  }

  .info-texto h2,
  .info-texto h3 {
    font-size: 1.4rem;
  }
  
  .info-texto a {
    word-break: break-word;
  }

  /* Formulário */
  .contato-form button {
    width: 90%;
    font-size: 1rem;
  }
  /* MAPA */
  /*CONTATO*/

.contato-header {
  background: linear-gradient(90deg, #37AF8F 40%, #007EA7 60%);
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-top: 80px;
}

/* TEXTO */
.contato-text {
  text-align: center;
  font-size: 1.2rem;
  padding: 15px 0;
}

/* CONTEÚDO */
.contato-section {
  padding: 50px 0 80px;
}

.contato-wrapper {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}


/* FORMULÁRIO */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.contato-form input,
.contato-form textarea {
  padding: 14px;
  border: 1px solid #353D3F;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  max-width: 1100px;
}

.contato-form textarea {
    height: 180px;
    resize: none;
}

.contato-form button {
  background-color: #1D89AA;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 1.05rem;
  border-radius: 2px;
  font-weight: 600;
  width: 350px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contato-form button:hover {
  background-color: #1D99AA;
}

/* BLOCO INFERIOR */
.info-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 60px auto;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
}

.mapa {
flex: 1;
min-width: 350px;
max-width: 600px;
}

.mapa iframe {
    width: 150%;
    height: 300px;
    border-radius: 8px;
    border: none;
}

.info-texto {
  flex: 1;
  margin-left: 220px;
  min-width: 300px;
  margin-bottom: 35px ;
}

.info-texto h2, h3 {
  color: #1D89AA;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.info-texto p{
    font-size: 1rem;
    line-height: 1.6;
    color: #353D3F;
    margin: 8px 0;
}

.info-texto a {
  color: #353D3F;
  text-decoration: none;
  font-weight: 600;
}

.info-texto a:hover {
  text-decoration: underline;
}

/* REDES SOCIAIS */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
/*RESPONSIVIDADE — TELAS MÉDIAS (tablets e monitores menores)*/
@media (max-width: 1300px) {

  /* Contato */
  .contato-form input,
  .contato-form textarea {
    width: 90%;
  }

  .info-texto {
    margin-left: 0;
    text-align: left;
  }

  .mapa iframe {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 1000px) {
  .info-conteudo,
  .info-texto{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mapa iframe {
    width: 100%;
  }
}
/*RESPONSIVIDADE — MOBILE (celulares)*/

@media (max-width: 768px) {

  /* CONTATO — TÍTULOS */
  .contato-header {
    margin-top: 40px;
  }

  /* FORMULÁRIO */
  .contato-form input,
  .contato-form textarea {
    width: 95%;
    font-size: 1rem;
  }

  .contato-form button {
    width: 70%;
  }

  /* BLOCO INFERIOR */
  .info-conteudo {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .info-texto {
    margin-left: 0;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  /* MAPA */
  .mapa {
    width: 100%;
  }

  .mapa iframe {
    width: 100%;
  }
}

/*RESPONSIVIDADE — MOBILE PEQUENO (celulares até 480px)*/
@media (max-width: 480px) {

  /* Títulos */
  .contato-text {
    font-size: 1rem;
  }

  .info-texto h2,
  .info-texto h3 {
    font-size: 1.4rem;
  }
  
  .info-texto a {
    word-break: break-word;
  }

  /* Formulário */
  .contato-form button {
    width: 90%;
    font-size: 1rem;
  }
  /* MAPA */
  .mapa {
        width: 100%;
        min-width: 0;
    }
  .mapa iframe {
        width: 100%;
        max-width: 100%;
   }
   .info-texto {
        width: 100%;
        min-width: 0;
        margin-left: 0;
    }
    .info-texto .email{
        font-size: 3vw;
    }
}
}




