@import url('services.css');
@import url('cases.css');

.top-full-banner,
.top-full-banner-mobile {
  background: url('../img/home/banner-home.jpg') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--color-white);
  padding: 10%;
}
.top-full-banner .banner-text,
.top-full-banner-mobile .banner-text {
  width: fit-content;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-green);
}
.top-full-banner .banner-text h2,
.top-full-banner-mobile .banner-text h2 {
  color: var(--color-white);
  font-size: 80px;
  line-height: 80px;
}
.top-full-banner-mobile.slick-slider {
  display: none;
}

.about-us,
.about-team {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
}
.about-xp {
  padding: 10%;
}
.about-us {
  background-color: var(--color-black);
  justify-content: space-between;
  padding: 5% 10%;
  height: auto;
}
.about-team {
  background: url('../img/home/home-sobre.jpg') no-repeat center center;
  background-size: cover;
  justify-content: flex-start;
  padding: 10%;
  height: 100vh;
}
.about-us .about-text,
.about-team .about-text,
.about-xp .about-text {
  width: 38%;
  font-size: 12px;
  line-height: 20px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 80px 80px 0 80px;
  padding: 64px;
  margin: 0 -80px 0 0;
}
.about-us .about-text {
  background-color: var(--color-green-blue);
}
.about-xp .about-text {
  width: 60%;
}
.about-us .about-image,
.about-team .about-image,
.about-xp .about-image {
  width: 60%;
  border-radius: 80px 80px 0 80px;
}

.case-interview {
  position: relative;
  padding: 80px 20%;
}
.case-interview h2 {
  font-size: 40px;
}
.case-interview .case-video {
  width: 100%;
  padding-bottom: 56.25%;
  height: auto;
  margin: 24px auto 0;
  position: relative;
}
.case-interview .case-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.content-header {
  width: 100%;
  max-height: 600px;
  height: 50%;
  background-color: var(--color-primary);
  background: url('../img/about/about-header.jpg') center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.content-header .lettering {
  background-color: rgba(0,0,0,0.4);
  width: fit-content;
  height: auto;
  padding: 32px 48px;
  font-size: 28px;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
}

.form {
  width: 100%;
  height: auto;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5% 10%;
}
.form .form-content {
  width: 50%;
  height: auto;
}
.form .form-image {
  width: 50%;
  height: auto;
  border-radius: 80px 80px 0 80px;
}
.form a:link,
.form a:hover,
.form a:active,
.form a:visited {
  color: var(--color-green);
}

@media (max-width: 900px) {
  .top-full-banner.slick-slider {
    display: none;
  }

  .top-full-banner,
  .top-full-banner-mobile {
    align-items: flex-end;
  }

  .top-full-banner .banner-text,
  .top-full-banner-mobile .banner-text {
    width: 100%;
  }
  .top-full-banner .banner-text,
  .top-full-banner-mobile .banner-text {
    border-radius: 40px 40px 0 40px;
  }
  .top-full-banner .banner-text h2,
  .top-full-banner-mobile .banner-text h2 {
    font-size: 42px;
    line-height: 42px;
  }

  .top-full-banner-mobile .banner .banner-text {
    display: none;
    width: 100%;
    padding: 24px 80px;
    font-size: 20px;
    position: relative;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    text-align: center;
  }

  .about-us {
    padding: 15% 10%;
    height: auto;
  }
  .about-team {
    background: url('../img/home/home-sobre-m.jpg') no-repeat center center;
    background-size: cover;
    align-items: flex-end;
  }
  .about-us .about-text,
  .about-team .about-text,
  .about-xp .about-text {
    width: 100%;
    padding: 10%;
    border-radius: 40px 40px 0 0;
  }
  .about-us .about-image,
  .about-team .about-image,
  .about-xp .about-image {
    width: 100%;
    border-radius: 0 0 0 40px;
  }
  .about-us .about-text {
    padding: 10%;
  }
  .about-us-text {
    text-align: left;
    padding: 0;
  }

  .case-interview {
    padding: 80px 10%;
  }

  .form {
    padding: 80px 10%;
    flex-direction: column-reverse;
  }
  .form h2 {
    font-size: 40px;
    height: 40px;
  }
  .form .form-content,
  .form .form-image {
    width: 100%;
  }
  .form .form-image {
    margin: 0 0 40px;
  }
}