/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* --------------------- END OF RESET ----------- */

/* @font-face {
  font-family: "Poppins-Black";
  src: url("./assets/fonts/Poppins-Black.ttf");
  font-weight: normal;
  font-style: normal;
} */

/* ---------------- END FONTS ------------------ */

/* declarando variaveis de cores */
:root {
  --clr-BlackOne: #000;
  --clr-LightBlue: #bfc8d3;
  --clr-DarkBlue: #00445f;
  --clr-White: #ffffff;
  --clr-Gold: gold;
  --clr-Marron: #cb9e21;
}
/* -------------- END OF COLOR PRESETS ---------- */

html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background: var(--clr-White);
  color: var(--clr-BlackOne);
}

a {
  transition: 0.5s;
}

img.responsive {
  width: 100%;
  height: auto;
}

.shadow {
  -webkit-box-shadow: 10px 10px 6px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 6px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 6px -11px rgba(0, 0, 0, 0.75);
}

div.api-response {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-DarkBlue);
  color: var(--clr-White);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  min-height: 80px;
  border: 2px solid var(--clr-White);
}

section#main {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;

  a#top_destination {
    position: fixed;
    bottom: 100px;
    right: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--clr-White);
    background: var(--clr-DarkBlue);
    color: var(--clr-White);
    text-transform: uppercase;
    text-decoration: none;
    z-index: 10;
    opacity: 0.3;
    @media (max-width: 800px) {
      width: 50px;
      height: 50px;
      bottom: 150px;
      right: 10px;
    }
  }

  /* top menu css ------------ */
  section#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--clr-BlackOne);

    div.content {
      display: flex;
      width: 100%;
      max-width: 1550px;
      padding: 0px 15px;
      column-gap: 30px;
      align-items: center;
      justify-content: space-between;
      min-height: 60px;

      ul.groupMenuDesk {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        column-gap: 15px;
        list-style: none;
        @media (max-width: 1080px) {
          display: none;
        }

        li {
          position: relative;
          width: max-content;
          height: auto;

          &.social {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            column-gap: 10px;
            row-gap: 10px;
            max-width: 120px;
            height: auto;
            @media (max-width: 1265px) {
              display: none;
            }
          }
          &.localizacao {
            a {
              font-weight: bold;
              margin-left: 50px;
              @media (max-width: 1320px) {
                margin-left: 0;
                font-weight: normal;
              }
            }
          }
          &.logo-li {
            @media (max-width: 1200px) {
              display: none;
            }
          }
          img.logo {
            width: 100%;
            max-width: 120px;
            height: 27px;
            margin-right: 100px;
            @media (max-width: 1430px) {
              margin-right: 0;
            }
          }

          a {
            font-weight: 300;
            color: var(--clr-White);
            text-transform: uppercase;
            text-decoration: none;
            font-size: 13px;
            &:hover {
              color: var(--clr-Gold);
            }
          }
        }
      }
      ul.groupMenuMobile {
        display: none;
        @media (max-width: 1080px) {
          position: relative;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 10px;
          list-style: none;
        }
        li {
          position: relative;

          div.submenu {
            display: none;
            &.show {
              position: absolute;
              display: flex;
              flex-direction: column;
              top: 60px;
              right: 0;
              padding: 15px;
              width: max-content;
              height: auto;
              background: var(--clr-DarkBlue);
              z-index: 10;

              a {
                color: var(--clr-White);
                margin-bottom: 15px;
                font-size: 12px;
                font-weight: 600;
                text-decoration: none;
                text-transform: uppercase;
                &:hover {
                  color: var(--clr-Gold);
                }
              }
              -webkit-border-bottom-right-radius: 10px;
              -webkit-border-bottom-left-radius: 10px;
              -moz-border-radius-bottomright: 10px;
              -moz-border-radius-bottomleft: 10px;
              border-bottom-right-radius: 10px;
              border-bottom-left-radius: 10px;
            }
          }
        }
      }
    }
  }

  /* top banner css ------------ */
  section#banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background: #1b1b22;
    background: linear-gradient(
      186deg,
      rgba(27, 27, 34, 1) 0%,
      rgba(20, 21, 26, 1) 50%
    );
    div.content {
      width: 100%;
      max-width: 1550px;
      min-height: 500px;
      display: flex;
      flex-direction: row;
      padding: 0;
      @media (max-width: 1310px) {
        align-items: center;
        justify-content: center;
        column-gap: 30px;
      }
      div.groupText {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        padding: 15px;
        @media (max-width: 1310px) {
          display: none;
        }

        h2 {
          color: var(--clr-LightBlue);
          font-size: 50px;
          font-weight: 300;
          margin-bottom: 15px;
          letter-spacing: -1px;
        }
        p {
          color: var(--clr-White);
          line-height: 1.1em;
          margin-bottom: 15px;
          max-width: 350px;

          font-size: 23px;
        }
      }
      div.leopoldo {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        img {
          z-index: 1;
        }

        div.groupTextMobile {
          display: none;
          @media (max-width: 1080px) {
            width: 95%;
            max-width: 390px;
            display: flex;
            flex-direction: column;
            width: max-content;
            height: auto;
            position: absolute;
            bottom: 120px;
            align-items: center;
            justify-content: center;
            padding: 0;
            z-index: 2;

            /* background: gold; */
            h2 {
              color: var(--clr-White);
              font-size: 35px;
              font-weight: 600;
              margin-bottom: 10px;
            }
            p {
              width: 85%;
              max-width: 350px;
              font-size: 15px;
              text-align: center;
              color: var(--clr-White);
              margin-bottom: 15px;
              letter-spacing: -1px;
            }
          }
        }
      }
      form.formContact {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;

        @media (max-width: 1400px) {
          max-width: max-content;
        }
        @media (max-width: 1080px) {
          display: none;
        }
        p {
          font-size: 19px;
          color: var(--clr-White);
          margin-bottom: 15px;
          font-weight: 300;
        }
        input.field {
          position: relative;
          padding: 15px;
          margin-bottom: 15px;
          border-radius: 5px;
          border: 0;
          font-size: 18px;
          font-weight: 200;
          color: var(--clr-DarkBlue);
          width: 100%;
          &::placeholder {
            font-size: 10px;
            position: absolute;
            top: 5px;
            left: 5px;
            color: #c5c5c5;
          }
        }
        button {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 10px;
          padding: 10px;
          text-transform: uppercase;
          color: #fff;
          background: var(--clr-DarkBlue);
          width: max-content;
          height: auto;
          font-size: 20px;
          font-weight: 600;
          border: 0;
          border-radius: 5px;
          margin-bottom: 80px;
        }
      }
    }
    div.groupMobile {
      display: none;
      @media (max-width: 1080px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 600px;
        padding: 50px 15px;

        form {
          display: flex;
          flex-direction: column;
          width: 100%;
          height: auto;

          h2 {
            color: var(--clr-White);
            font-size: 50px;
            margin-bottom: 15px;
            line-height: 1em;
            text-align: center;
          }
          p {
            color: var(--clr-White);
            font-size: 21px;
            line-height: 1.1em;
            margin-bottom: 25px;
            font-weight: 600;
            text-align: center;
            @media (max-width: 580px) {
              max-width: 80%;
              margin: 10px auto 30px auto;
            }
          }

          input.field {
            position: relative;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 0;
            font-size: 18px;
            font-weight: 200;
            color: var(--clr-DarkBlue);
            width: 100%;
          }
          div.groupSbmt {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            button.sbmt {
              display: flex;
              align-items: center;
              justify-content: center;
              column-gap: 10px;
              padding: 10px;
              text-transform: uppercase;
              color: #fff;
              background: var(--clr-Marron);
              font-weight: 600;
              width: max-content;
              height: auto;
              font-size: 20px;
              border: 0;
              border-radius: 5px;
              margin-bottom: 80px;
            }
          }
        }
      }
    }
  }
  /* procedures css ------------ */
  section.procedures {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

    div.group {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 900px;
      padding: 100px 15px;

      h1 {
        font-size: 50px;
        text-align: center;
        line-height: 1em;
        margin-bottom: 15px;
        color: var(--clr-White);
        letter-spacing: -1px;
        @media (max-width: 1140px) {
          font-size: 35px;
          letter-spacing: -2px;
        }
      }
      h2 {
        font-size: 30px;
        font-weight: 300;
        text-align: center;
        line-height: 1.1em;
        margin-bottom: 35px;
        color: var(--clr-White);
        max-width: 630px;
        @media (max-width: 1140px) {
          font-size: 25px;
        }
      }
      div.groupImage {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-bottom: 100px;
        width: 90%;
        img {
          width: 90%;
          height: auto;
          @media (max-width: 1140px) {
            width: 80%;
            height: auto;
          }
          @media (max-width: 5800px) {
            width: 100%;
            height: auto;
          }
        }
        a {
          position: absolute;
          bottom: -50px;
          background: var(--clr-DarkBlue);
          color: var(--clr-White);
          padding: 30px;
          text-decoration: none;
          font-size: 28px;
          @media (max-width: 1140px) {
            padding: 20px;
            font-size: 22px;
            bottom: -35px;
          }
          &:hover {
            background: var(--clr-Marron);
          }
        }
      }
      p {
        font-size: 21px;
        color: var(--clr-White);
        line-height: 1.5em;
        margin-bottom: 15px;
        font-weight: 600;
        @media (max-width: 1140px) {
          font-size: 17px;
        }
      }
      h3 {
        font-size: 21px;
        color: var(--clr-White);
        font-weight: 900;
        line-height: 1.5em;
        margin-bottom: 15px;
        @media (max-width: 1140px) {
          font-size: 17px;
        }
      }
      ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        li {
          color: var(--clr-White);
          font-size: 21px;
          margin-left: -20px;
          font-weight: 600;
          @media (max-width: 1140px) {
            font-size: 17px;
          }
        }
      }
    }
  }

  section.forms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    padding: 50px 15px;
    background-size: cover;
    div.content {
      display: flex;
      flex-wrap: wrap;
      width: 90%;
      max-width: 1200px;
      height: auto;
      align-items: center;
      justify-content: space-between;
      @media (max-width: 1140px) {
        justify-content: center;
      }

      h1 {
        font-size: 50px;
        letter-spacing: -2px;
        line-height: 1em;
        margin-bottom: 15px;
        color: var(--clr-White);
        @media (max-width: 1300px) {
          font-size: 40px;
        }
        @media (max-width: 1140px) {
          display: none;
        }
      }
      form {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        row-gap: 15px;
        @media (max-width: 1140px) {
          align-items: center;
          justify-content: center;
        }

        h2 {
          display: none;
          @media (max-width: 1140px) {
            display: block;
            font-size: 40px;
            line-height: 1em;
            color: var(--clr-White);
            margin-bottom: 20px;
            text-align: center;
          }
        }

        p {
          font-size: 19px;
          font-weight: 200;
          color: var(--clr-White);
          line-height: 1em;
          margin-bottom: 15px;
          @media (max-width: 1140px) {
            text-align: center;
            font-size: 21px;
            font-weight: 600;
          }
        }
        input.field {
          position: relative;
          padding: 15px;
          margin-bottom: 15px;
          border-radius: 5px;
          border: 0;
          font-size: 18px;
          font-weight: 200;
          color: var(--clr-DarkBlue);
          width: 100%;
        }
        button.sbmt {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 10px;
          padding: 10px;
          text-transform: uppercase;
          color: #fff;
          background: var(--clr-DarkBlue);
          width: max-content;
          height: auto;
          font-size: 20px;
          font-weight: 600;
          border: 0;
          border-radius: 5px;
          transition: 0.5em;
          &:hover {
            background: var(--clr-Marron);
          }
        }
      }
    }
  }
  section#area_3 {
    background: #2a3041;
    background: url("../assets/images/forms/bg_01.jpg") no-repeat center center;
    background-size: cover;
  }
  section#area_5 {
    background: #2a3041;
    background: url("../assets/images/forms/bg_02.jpg") no-repeat center center;
    background-size: cover;
  }
  section#area_8 {
    background: #2a3041;
    background: url("../assets/images/forms/bg_02.jpg") no-repeat center center;
    background-size: cover;
  }

  section#bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 15px;
    height: auto;
    background: #2a3041;
    background: linear-gradient(
      186deg,
      rgba(42, 48, 65, 1) 0%,
      rgba(20, 21, 26, 1) 50%
    );

    div.content {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1350px;
      min-height: 500px;
      @media (max-width: 1220px) {
        align-items: center;
        justify-content: center;
      }
      img.leopoldo-mobile {
        display: none;
        @media (max-width: 600px) {
          display: block;
        }
      }
      img.leopoldo {
        display: block;
        @media (max-width: 600px) {
          display: none;
        }
      }
      div.groupText {
        padding: 20px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        width: 50%;
        max-width: 600px;
        align-items: flex-end;
        justify-content: center;

        @media (max-width: 1220px) {
          position: relative;
          align-items: flex-start;
        }
        @media (max-width: 950px) {
          width: 100%;
          max-width: 90%;
        }
        h1 {
          font-size: 60px;
          color: var(--clr-White);
          font-weight: 650;
          margin-bottom: 15px;
          letter-spacing: -2px;
          line-height: 1.1em;
          text-align: right;
          @media (max-width: 1220px) {
            text-align: center;
            font-size: 45px;
          }
          @media (max-width: 600px) {
            font-size: 30px;
            font-weight: 600;
            margin: 15px auto;
          }
        }
        p {
          font-size: 18px;
          font-weight: 500;
          color: var(--clr-White);
          margin-bottom: 15px;
          line-height: 1.5em;
          text-align: right;
          @media (max-width: 1220px) {
            text-align: left;
          }
        }
        ul {
          display: flex;
          flex-direction: column;
          list-style: none;
          align-items: flex-end;
          justify-content: center;
          @media (max-width: 1220px) {
            align-items: flex-start;
            padding: 0;
          }
          li {
            text-align: right;
            color: var(--clr-White);
            &.title {
              margin-bottom: 5px;
              font-weight: 600;
            }
          }
        }
      }
    }
  }
  section#location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--clr-White);
    padding-top: 100px;
    div.content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 1200px;

      img.logo {
        margin-bottom: 50px;
        @media (max-width: 580px) {
          display: none;
        }
      }
      div.groupText {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 600px;
        column-gap: 20px;
        margin-bottom: 25px;
        @media (max-width: 580px) {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
        }
        h1 {
          font-size: 50px;
          font-weight: 600;
          letter-spacing: -2px;
        }
        div {
          text-align: center;
        }
      }
      div.area_map {
        width: 100%;
        margin-bottom: 30px;
        @media (max-width: 580px) {
          margin-top: 100px;
        }
      }
      div.groupBotton {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        height: auto;
        border-bottom: 2px solid #000;
        padding-bottom: 40px;
        margin-bottom: 50px;
        @media (max-width: 580px) {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          row-gap: 20px;
        }
        div.text {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          width: max-content;
          p {
            @media (max-width: 580px) {
              align-items: center;
              justify-content: center;
              text-align: center;
            }
          }
        }
        div.social {
          display: flex;
          width: max-content;
          column-gap: 15px;
          align-items: center;
          justify-content: center;
        }
      }
      div.groupForm {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        @media (max-width: 580px) {
          display: none;
        }
        h1 {
          font-size: 55px;
          line-height: 1.1em;
          margin-bottom: 20px;
          text-align: center;
          letter-spacing: -1px;
        }
        form {
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          width: 90%;
          max-width: 600px;
          border: 2px solid #000;
          padding: 25px;
          height: auto;
          margin-bottom: 100px;
          p {
            font-size: 19px;
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1.1em;
          }
          input.field {
            position: relative;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 0;
            font-size: 18px;
            font-weight: 200;
            color: var(--clr-DarkBlue);
            width: 100%;
            border: 1px solid #c5c5c5;
            &::placeholder {
              font-size: 10px;
              position: absolute;
              top: 5px;
              left: 5px;
              color: #c5c5c5;
            }
          }
          div.groupSbmt {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            height: 5px;
            button {
              position: relative;
              bottom: -30px;
              right: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              column-gap: 10px;
              padding: 10px;
              text-transform: uppercase;
              color: #fff;
              background: var(--clr-DarkBlue);
              width: max-content;
              height: auto;
              font-size: 20px;
              font-weight: 600;
              border: 0;
              border-radius: 5px;
            }
          }
        }
      }
    }
    div.sign {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      column-gap: 10px;
      width: 100%;
      padding: 5px;
      background: var(--clr-DarkBlue);
      p {
        font-size: 16px;
        color: var(--clr-White);
      }
      a {
        text-decoration: none;
        color: var(--clr-White);
        font-weight: 600;
      }
    }
  }
} /* end of main--- */
