.section-contato {
  background-color: black;
  color: var(--b1-color);
  padding: 120px 0px;
}

.section-contato h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-geometric415);
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

.section-contato h2::before,
.section-contato h2::after {
  content: "";
  width: 100px;
  height: 5px;
  background-color: var(--b2-color);
  border-radius: 4px;
}

.container-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 230px;
}

.form-contato {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-geometric415);
  font-size: 18px;
  font-weight: 900;
  padding: 20px 0 5px;
}

.form-group input {
  width: 470px;
  height: 50px;
}

.form-group textarea {
  width: 470px;
  height: 230px;
  resize: none;
}

.form-group input, .form-group textarea {
  border: 2px solid var(--v3-color);
  border-radius: 5px;
  font-size: 16px;
  padding: 8px;
  outline: none;
  transition: .1s ease;
}

.form-group input:hover, .form-group textarea:hover{
  outline: 2px solid var(--v1-color);
}

.form-group input:focus, .form-group textarea:focus{
  outline: 2px solid var(--v1-color);
}

.form-contato button {
  width: 470px;
  height: 64px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background-color: var(--v2-color);
  color: var(--b1-color);
  font-family: var(--font-geometric415);
  font-weight: 900;
  font-size: 20px;
  box-shadow: -4px 4px 10px 0 var(--v5-color);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.form-contato button:hover {
  background-color: var(--v1-color);
  transform: translateY(-3px);
  box-shadow: -6px 6px 14px var(--v5-color);
}

.form-contato button:active {
  transform: translateY(1px);
  box-shadow: -2px 2px 6px var(--v5-color);
}

.info-endereco .btn-mapa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 40px;
  margin-top: 15px;
  border: 1px solid var(--b1-color);
  border-radius: 10px;
  background-color: transparent;
  color: var(--b1-color);
  font-family: var(--font-geometric415);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.info-endereco .btn-mapa svg {
  width: 10px;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.info-endereco .btn-mapa:hover {
  background-color: var(--b1-color);
  color: black;
}

.info-endereco .btn-mapa:hover svg {
  transform: translateX(4px);
}

.infos-contato-all {
  border-bottom: 1px solid var(--p3-color);
  padding: 20px 0;
}

.infos-contato-all h3 {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  font-family: var(--font-geometric415);
  font-weight: 700;
  font-size: 20px;
}

.info-endereco h3::before {
  content: url("../img/geo-alt.svg");
  margin-right: 7px;
  height: 25px;
}

.info-email h3::before {
  content: url("../img/envelope-at.svg");
  margin-right: 7px;
  height: 25px;
}

.info-contato h3::before {
  content: url("../img/telephone.svg");
  margin-right: 7px;
  height: 25px;
}

.info-horario h3::before {
  content: url("../img/clock.svg");
  margin-right: 7px;
  height: 25px;
}

.infos-contato-all p {
  font-family: var(--font-geometric415);
  font-weight: 500;
  font-size: 16px;
}

.info-redes-sociais {
  display: flex;
  gap: 38px;
  padding-top: 20px;
}

.info-redes-sociais .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-redes-sociais .icon svg {
  width: 25px;
  height: 25px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.info-redes-sociais .icon {
  transition: transform 0.2s ease;
}

.info-redes-sociais .youtube svg {
  width: 28px;
  height: 22px;
}

.info-redes-sociais .icon:hover svg {
  transform: scale(1.15);
  color: var(--v1-color);
}

.g-recaptcha {
  margin-top: 20px;
}

/* mobile pequeno */
@media (max-width: 320px) {
  .section-contato h2 {
    font-size: 28px;
  }

  .section-contato h2::before,
  .section-contato h2::after {
    width: 40px;
    height: 5px;
  }

  .container-contato {
    flex-direction: column;
    gap: 32px;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-group input {
    width: 250px;
    height: 40px;
  }

  .form-group textarea {
    width: 250px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .form-contato button {
    width: 250px;
    font-size: 18px;
  }

  .infos-contato {
    max-width: 250px;
  }
  
  .info-endereco .btn-mapa {
    width: 146px;
  }

  .info-endereco .btn-mapa svg {
    width: 8px;
  }

  .infos-contato-all h3 {
    font-size: 18px;
  }

  .infos-contato-all p {
    font-size: 14px;
  }

  .info-redes-sociais .icon svg {
    height: 22px;
  }

  .info-redes-sociais .youtube svg {
    height: 19px;
  }

}

/* mobile */
@media (min-width: 321px) and (max-width: 480px) {
  .section-contato h2 {
    font-size: 34px;
  }

  .section-contato h2::before,
  .section-contato h2::after {
    width: 52px;
  }

  .container-contato {
    flex-direction: column;
    gap: 32px;
  }

  .form-group input {
    width: 300px;
    height: 40px;
  }

  .form-group textarea {
    width: 300px;
  }

  .form-contato button {
    width: 300px;
  }

  .info-endereco .btn-mapa {
    width: 166px;
  }

  .infos-contato {
    max-width: 300px;
  }

  .infos-contato-all h3 {
    font-size: 18px;
  }

  .infos-contato-all p {
    font-size: 14px;
  }

  .info-redes-sociais .icon svg {
    height: 22px;
  }

  .info-redes-sociais .youtube svg {
    height: 19px;
  }
}

/* tablet */
@media (min-width: 481px) and (max-width: 600px) {
  .section-contato h2 {
    font-size: 36px;
  }

  .section-contato h2::before,
  .section-contato h2::after {
    width: 72px;
  }

  .container-contato {
    flex-direction: column;
    gap: 32px;
  }

  .form-group input {
    width: 350px;
    height: 40px;
  }

  .form-group textarea {
    width: 350px;
  }

  .form-contato button {
    width: 350px;
  }

  .infos-contato {
    max-width: 350px;
  }

  .info-redes-sociais .icon svg {
    height: 24px;
  }

  .info-redes-sociais .youtube svg {
    height: 21px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .section-contato h2 {
    font-size: 38px;
  }

  .container-contato {
    flex-direction: column;
    gap: 32px;
  }

  .form-group input {
    width: 420px;
  }

  .form-group textarea {
    width: 420px;
  }

  .form-contato button {
    width: 420px;
  }

  .infos-contato {
    max-width: 420px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .container-contato {
    gap: 5%;
  }

  .form-group input {
    width: 350px;
  }

  .form-group textarea {
    width: 350px;
  }

  .form-contato button {
    width: 350px;
  }

  .infos-contato {
    max-width: 350px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .container-contato {
    gap: 14%;
  }
}