@import "variaveis.css";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Open sans", sans-serif;
  font-weight: 400;
  font-size: var(--description-font-size);
  box-sizing: border-box;
  list-style: none;
}
body {
  overflow-x: hidden;
}

/* =================== NAVBAR ==================== */

.header-navbar {
  position: fixed;
  width: 100%;
  height: 71px;
  padding: 5px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.navbar {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.container-navbar-link {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar-link {
  color: #fff;
  transition: color 100ms linear;
  font-size: 14px;
  font-weight: 500;
}
.navbar-link:hover {
  color: #ffffff6e;
}

.hamburger {
  /* display: none; */
  border: none;
  background: none;
  display: none;
  border-top: 3px solid #fff;
  cursor: pointer;
  z-index: 1;
}
.hamburger::before,
.hamburger::after {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin-top: 5px;
  transition: 0.3s;
  position: relative;
}
/* =================== NAVBAR ==================== */

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0px;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 1440px) {
  .navbar {
    padding: 0px 20px;
  }
}

.botao-navbar {
  padding: 10px 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.botao-primario {
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  max-width: 240px;
  display: grid;
  place-content: center;
  transition: background-color 150ms linear;
}

.botao-primario:hover {
  background-color: #1b497e;
}

.title {
  font-size: var(--title-font-size);
  font-weight: 700;
}

.description {
  font-size: var(--description-font-size);
  color: var(--description-color);
  line-height: 1.7;
}

.subtitle {
  font-size: var(--subtitle-font-size);
  font-weight: 600;
}

.description-2 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.disabled-link{
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .container-navbar-link {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    pointer-events: none;
    clip-path: circle(50px at 90% -15%);
    transition: 0.8s ease-out;
  }
  .navbar.active .container-navbar-link {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }
  .navbar-link {
    font-size: 24px;
  }
  .navbar.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }
  .navbar.active .hamburger::before {
    transform: rotate(135deg);
  }
  .navbar.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  .botao-navbar {
    padding: 10px 70px;
    background-color: #fff;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-size: 24px;
  }
  .header-navbar {
    padding: 0px 15px;
  }
}

.animate-scrol-down {
  position: absolute;
  top: 66%;
}

@media screen and (max-width: 600px) {
  .animate-scrol-down {
    margin-top: 30px;
    top: 76%;
  }
}

@media screen and (max-width: 450px) {

  .animate-scrol-down {
    display: none;

  }

}

/* ========================= FOOTER ========================= */

.container-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #013563;
  padding: 1rem;
}

.content-footer {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.col-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 33%;
  gap: 50px;
  height: 100%;
}
.col-1 img {
  margin-top: 50px;
}

.col-2 {
  display: flex;
  flex-direction: column;
  width: 20%;
  gap: 10px;
  margin-top: 20px;
}
.col-3 {
  display: flex;
  flex-direction: column;
  width: 33%;
  margin-top: 20px;
}

.description-footer {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}

.description-footer strong {
  font-weight: 800;
}

.social-media-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  transition: opacity 280ms linear;
}

.social-media-icons a {
  border: 1px solid #fff;
  padding: 8px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}

.social-media-icons a:hover {
  opacity: 50%;
}

.politica-de-privacidade {
  width: 100%;
  text-align: center;
  padding: 26px 0 0 0;
}

@media screen and (max-width: 900px) {
  .content-footer {
    flex-direction: column-reverse;
  }
  .col-1,
  .col-2,
  .col-3 {
    width: 100%;
    align-items: center;
  }

  .description-2 {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
  }
}

/* ========================= FOOTER ========================= */
