/* SECTION - BANNER TOPO */

.banner_topo {
  height: 37.5rem;
  color: var(--white);
}

.banner_content {
  gap: 27px;
}

.banner_content > h1 {
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -1.2px;
}

.banner_content > p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
}

/* SECTION - FORM ATENDIMENTO */

.form_atendimento {
  margin-top: -6.25rem;
  margin-bottom: 2rem;
}

/* BOX ATENDIMENTO  */
.box_atendimento {
  background-color: var(--primary);
  border-radius: 8px;
  color: var(--white);
  padding: 2rem 2rem 4rem;
  gap: 2rem;
}

.box_atendimento > h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
}

.box_atendimento > .canais {
  gap: 2rem;
}

.box_atendimento > .canais > .items {
  display: flex;
  align-items: start;
  gap: 10px;
}

.items > .box_icon {
  background-color: var(--white);
  min-width: 50px;
  min-height: 50px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
}

.items > .box_icon > i {
  font-size: 1.25rem;
}

.items > .box_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.items > .box_text > h3 {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}

.items > .box_text > span {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .banner_content {
    max-width: 43.75rem;
  }

  .form_atendimento {
    margin-bottom: 10rem;
  }

  .box_form {
    padding: 3rem;
  }

  .box_form .form {
    gap: 2rem 0;
  }

  .box_atendimento {
    min-width: 100%;
  }
}

@media (min-width: 1200px) {
	.box_atendimento {
    min-width: 30.25rem;
  }
}