header{
  background-image: url('../assets/backgrounds/contact-header.png');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
header .banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7rem 20rem 30rem 20rem;
}
header .banner h2 {
  font-weight: 900;
  font-size: 7rem;
  line-height: 7.8rem;
  color: var(--white);
  text-shadow: 2px 5px 15px rgba(0, 0, 0, 0.25);
}

main .contact {
  margin-top: -5rem;
  padding: 0 20rem;
}

main .contact .description {
  margin-top: 1.6rem;
  margin-bottom: 2rem;
  color: var(--grey);
  font-weight: 900;
  font-size: 4rem;
  line-height: 4rem;
}

main .contact form .input-block.subject label{
  color: var(--white);
  background-color: var(--grey);
  box-shadow: 0px 0.8rem 1.6rem rgba(0, 0, 0, 0.15);
  border-radius: 5rem;
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 5.2rem;
  margin-right: 1rem;
  cursor: pointer;
}

main .contact form .input-block.subject input[type=radio]{
  display: none;
}

main .contact form .input-block.subject input[type=radio]:checked + label {
  background-color: var(--yellow);
}

main .contact form .wrapper{
  margin-top: 1rem;
  display: flex;
  width: 100%;
}

main .contact form .wrapper .input-block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

main .contact form .wrapper .left .input-block-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .contact form .wrapper .left .input-block-wrapper .input-block{
  width: 45%;
}

main .contact form .wrapper .left {
  width: 50%;
  margin-right: 3rem;
}

main .contact form .wrapper .input-block label{
  font-size: 2rem;
  line-height: 2rem;
  color: var(--grey);
  font-weight: 400;
  margin: 0.8rem 0;
}

main .contact form .wrapper .input-block input{
  width: 100%;
  height: 36px;
  background-color: var(--grey-light);
  border: none;

  font-size: 1.8rem;
  padding: 0.4rem;

  outline-color: var(--yellow);
}

main .contact form .wrapper .right {
  width: calc(50% - 3rem);
}

main .contact form .wrapper .right .input-block textarea{
  width: 100%;
  height: 18rem;
  background-color: var(--grey-light);
  border: none;
  outline-color: var(--yellow);
  resize: none;

  font-size: 1.8rem;
  padding: 0.4rem;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

main .contact form .input-block.submit {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

main .contact form .input-block.submit .button{
  border: none;
  font-weight: 500;
  font-size: 2rem;
}

main .contact .more {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .contact .more .left, main .contact .more .right {
  width: 50%;
}

main .contact .more .heading3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3rem;
}

main .contact .more .heading3 h3 {
  margin-left: 2rem;
  font-size: 3.5rem;
  line-height: 3rem;
  font-weight: 900;
  color: var(--blue-dark);
}

main .contact .more p{
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--grey);
}

/* MEDIAS QUERY */

/* 4k - 2560px */
@media (min-width: 2000px){
  header .banner {
    padding: 10rem 40rem 30rem 40rem;
  }

  header .banner h2 {
    font-size: 8rem;
    line-height: 8.8rem;
    margin-bottom: 2.6rem;
  }
  header .banner p {
    font-size: 2.4rem;
    line-height: 3.4rem;
    max-width: 100rem;
  }
  main .contact{
    padding: 0 40rem;
  }
  main .contact form .input-block.subject label{
    font-size: 2.4rem;
  }
  main .contact form .wrapper .input-block label{
    font-size: 2.4rem;
    line-height: 3rem;
    margin: 1rem 0;
  }
  main .contact form .wrapper .input-block input{
    height: 72px;
    font-size: 2.4rem;
    padding: 0.8rem 1rem;
  }
  main .contact form .wrapper .right {
    width: calc(50% - 3rem);
  }
  main .contact form .wrapper .right .input-block textarea{
    font-size: 2.4rem;
    padding: 0.8rem 1rem;
    height: 27rem;
  }
  main .contact form .input-block.submit {
    margin-top: 3rem;
  }
  main .contact form .input-block.submit .button{
    font-size: 2.8rem;
  }
  main .contact .more {
    margin-top: 3rem;
  }
  main .contact .more .left, main .contact .more .right {
    width: 50%;
  }
  main .contact .more .heading3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
  }
  main .contact .more .heading3 img {
    width: 120px;
    height: 120px;
  }
  main .contact .more .heading3 h3 {
    margin-left: 4rem;
    font-size: 5rem;
    line-height: 5rem;
  }
  main .contact .more p{
    font-size: 3rem;
    line-height: 4rem;
  }
}

/* Laptop L - 1440px */
/* CÓDIGO ORIGINAL */

/* Laptop - 1024px */
@media (max-width: 1200px) {
  header .banner {
    padding: 5rem 10rem 20rem 10rem;
  }
  main .contact{
    padding: 0 10rem;
  }
}

/* Tablet - 768px */
@media (max-width: 820px) {
  header .banner {
    padding: 5rem 5rem 20rem 5rem;
  }
  main .contact{
    padding: 0 5rem;
  }
}

/* Mobile L - 425px */
@media (max-width: 680px) {
  header .banner {
    padding: 5rem 10% 20rem 10%;
    text-align: center;
  }
  header .banner h2 {
    font-size: 4rem;
    line-height: normal;
  }
  header .banner p {
    font-size: 1.6rem;
  }
  main .contact{
    padding: 0 10%;
    margin-top: -5rem;
  }
  main .contact .description {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 4rem;
  }
  main .contact form .wrapper{
    flex-direction: column;
  }
  main .contact form .wrapper .left,
  main .contact form .wrapper .right {
    width: 100%;
    margin-right: 0;
  }
  main .contact .more {
    display: flex;
    flex-direction: column;
  }
  main .contact .more .left{
    width: 100%;
    margin-bottom: 2.5rem;
  }
  main .contact .more .right {
    width: 100%;
  }
  main .contact .more .heading3 img {
    width: 5rem;
    height: 5rem;
  }
  main .contact .more .heading3 h3 {
    font-size: 3rem;
  }
  main .contact .more p{
    font-size: 2rem;
  }
}
