*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --strong-color: #07183b;
  --light-contrast: #07183b;
  --light-blue: #07183b;
  --second-color: #b69970;
  --white: #ffffff;
  --black: #010101;
}

html {
  font-size: 10px;
}

body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

#iframe-container {
  min-height: 450px;
  background-color: lightgray;
}

.menu-container {
  width: 100%;
  display: flex;
  height: 60px;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

.menu {
  position: relative;
  width: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  cursor: pointer;
}

.menu-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.menu-label {
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  color: var(--white);
  user-select: none;
}

.menu div {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  background: var(--strong-color);
}

.header-ul {
  position: absolute;
  left: -100%;
  top: 0;
  list-style-type: none;
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: var(--strong-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  padding: 5px;
  z-index: 2;
  transition: all 0.4s ease;
  visibility: hidden;
  border-left: 10px solid var(--second-color);
}

.header-ul-active {
  left: 0%;
  visibility: visible;
}

.header-button {
  font-size: 20px;
  color: var(--white);
  border: 0;
  color: var(--white);
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.4s ease;
}

.logo-container {
  width: 95%;
  margin: 0 auto;
  max-width: 1000px;
  z-index: 1;
}

.logo-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: optimizeQuality;
}

.banner {
  position: relative;
  background-image: url(./assets/video-preview.webp);
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
}

.banner::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--strong-color);
  opacity: 0.5;
  background-image: linear-gradient(
    to bottom,
    var(--strong-color),
    var(--light-contrast)
  );
  z-index: 1;
}

.banner::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: linear-gradient(
    to bottom,
    transparent,
    var(--light-contrast)
  );
  z-index: 1;
}

.banner-second,
.banner-missao,
.banner-incorporadora,
.banner-contato,
.banner-negocios {
  position: relative;
  background-image: url(./assets/project03.jpg);
  height: 30vh;
  max-height: 700px;
  margin-top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-missao {
  background-image: url(./assets/assessoria.webp);
}

.banner-incorporadora {
  background-image: url(./assets/banner-contact.jpeg);
}

.banner-contato {
  background-image: url(./assets/contato.jpg);
}

.banner-negocios {
  background-image: url(./assets/project03.jpg);
}

.banner-second::before,
.banner-missao::before,
.banner-incorporadora::before,
.banner-contato::before,
.banner-negocios::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--strong-color);
  opacity: 0.5;
  background-image: linear-gradient(
    to bottom,
    var(--strong-color),
    var(--light-contrast)
  );
}

.banner-second::after,
.banner-missao::after,
.banner-incorporadora::after,
.banner-contato::after,
.banner-negocios::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: linear-gradient(
    to bottom,
    transparent,
    var(--light-contrast)
  );
}

.title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}

.banner-title {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.image-project-container {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  margin-top: 60px;
  box-shadow: -10px 10px 0 var(--second-color);
}

.image-project-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 20px 0;
}

.section-image {
  width: 90%;
  margin: 0 auto;
  height: 500px;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-title {
  width: 90%;
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--strong-color);
}

.container-p {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.section-p {
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

.section-contact {
  position: relative;
  background-image: url(./assets/banner-contact.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 0;
}

.section-contact::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--strong-color);
  opacity: 0.5;
  background-image: linear-gradient(
    to bottom,
    var(--strong-color),
    var(--light-contrast)
  );
}

.section-contact > * {
  position: relative;
  z-index: 1;
}

.contact-ul {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
  margin-top: 30px;
  list-style-type: none;
}

.contact-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
}

.contact-cta-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.items-list {
  font-size: 16px;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
  padding: 20px;
  background-color: var(--white);
  color: var(--light-contrast);
  width: 100%;
  margin-bottom: 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
}

.counter {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-contrast);
  color: var(--white);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-map {
  width: 100%;
  padding-bottom: 0;
}

.p-map {
  padding-left: 10px;
}

.section-map iframe {
  width: 100%;
}

.form {
  width: 90%;
  margin: 0 auto;
  max-width: 600px;
  padding: 20px;
  background-color: var(--white);
}

.form fieldset {
  border: 0;
  padding: 10px 0;
}

.form label {
  display: block;
  color: var(--strong-color);
  font-size: 18px;
  font-weight: 400;
}

.form-input-text {
  width: 100%;
  padding: 10px;
}

.form-radio-container {
  display: flex;
  margin-bottom: 10px;
  justify-content: flex-start;
}

.form-radio {
  display: block;
  width: 50px;
  background-color: red;
}

.form-submit {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: var(--strong-color);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  border: 0;
  cursor: pointer;
  transition: background 0.4s ease;
}

.form-submit:hover,
.form-submit:focus {
  background-color: var(--second-color);
}

@media (min-width: 1024px) {
  .banner-second,
  .banner-missao,
  .banner-incorporadora,
  .banner-contato,
  .banner-negocios {
    min-height: 400px;
  }
  .menu-container {
    display: none;
  }
  .header {
    height: 90px;
  }
  .header-ul {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    flex-direction: row;
    background: transparent;
    height: 100%;
    justify-content: flex-end;
    visibility: visible;
    border-left: 0;
  }

  .header-button:hover {
    color: var(--second-color);
  }

  .banner-title {
    font-size: 60px;
  }

  .banner-subtitle {
    font-size: 40px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 60px;
  }

  .section-p {
    font-size: 22px;
  }

  .contact-item {
    font-size: 22px;
  }

  .cta {
    font-size: 20px;
  }

  .list-item {
    font-size: 20px;
  }

  .p-map {
    text-align: center;
  }

  .image-project-container {
    box-shadow: -20px 20px 0 var(--second-color);
  }
}
