/* ----- bloco principal ----- */
main .contact {
  background-image: url('../images/fale-conosco/contato-background.png');
  background-repeat: no-repeat;
  background-size: max(768px, 100%);
  background-position: bottom;
  width: 100%;
  height: clamp(200px, 50vw, 100vh);
  /* max-width: 1500px; */

  position: relative;
}

main .contact-text {
  position: absolute;
  right: 50%;
  top: 30%;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-text .titulo {
  color: var(--YELLOW);
  font-family: 'Gobold', sans-serif;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-text .paragrafo {
  color: var(--WHITE);
  font-family: 'Axiforma', sans-serif;
  font-size: clamp(.85rem, 1.8vw, 2rem);
  font-weight: bold;
  line-height: 1.2;
}

.contact-text .contacts {
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-text .contacts p {
  color: var(--WHITE);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.75rem, 1.3vw, 1.5rem);
}

.contact-text .whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-text .whatsapp a {
  color: var(--WHITE);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: bold;
  text-decoration: underline;
}

.contact-text .whatsapp img {
  width: clamp(35px, 3vw, 55px);
}

/* ----- bloco do mapa ----- */
main .map {
  background-image: url('../images/fale-conosco/mapa.png');
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: clamp(95px, 29vw, 100vh);
  /* max-width: 1500px; */
}

/* ----- bloco de ajuda ----- */
main .contact-help {
  background-color: var(--WHITE);
  width: 100%;
  /* max-width: 1500px; */
  padding: 3rem;
  
  display: flex;
  justify-content: center;
}

.contact-help-text {
  max-width: 1300px;
}

.contact-help-text .title {
  font-family: 'Gobold', sans-serif;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  text-transform: uppercase;
  color: var(--RED);
  margin-bottom: 1.5rem;
}

.contact-help-text .texts p {
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.5;
  break-inside: avoid;
}

.contact-help-text .texts p:last-child {
  margin-bottom: 0;
}

/* ----- media queries ----- */
@media screen and (max-width: 924px) {
  main .contact {
    background-size: max(924px, 100%);
    background-position: 8%;
    width: 100%;
    height: clamp(471.23px, 51vw, 100vh);
  }

  main .contact-text {
    right: auto;
    left: 15.8%;
    bottom: 8%;
  }
}