@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-size: cover;
  color: #E7E9EE;
}

.miolo p {
  line-height: 1.5;
}

.botao {
  border: 1px solid white;
  border-radius: 50px;
}

/* Utilities */
/* Por padrão, tudo escondido */
.hidden-mobile,
.hidden-desk {
  display: none;
}

/* Mobile: até 767px */
@media (max-width: 767px) {
  .hidden-mobile {
    display: block;
  }
}
/* Tablet e Desktop: a partir de 768px */
@media (min-width: 768px) {
  .hidden-desk {
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
}
.w-600 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
  height: 100vh;
}
.container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

h2 {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.logo {
  padding-top: 40px;
}

@media (max-width: 500px) {
  .logo img {
    width: 80%;
  }
}
.miolo {
  margin-bottom: 80px;
}
.miolo h2 {
  font-size: 64px;
}
.miolo h2 span {
  font-weight: 500;
}
.miolo p {
  font-size: 18px;
}
.miolo + div a {
  width: 302px;
  display: block;
  margin: 0 auto 1rem;
}
.miolo + div p {
  font-size: 14px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  line-height: 150%;
  text-align: center;
}
.miolo {
  /* Mobile adjustments */
}
@media (max-width: 500px) {
  .miolo {
    margin-bottom: 40px;
  }
  .miolo h2 {
    font-size: 42px;
    line-height: 100%;
  }
  .miolo p {
    font-size: 16px;
  }
  .miolo + div p {
    font-size: 12px;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
  gap: 8px;
}
.footer span {
  flex-grow: 1;
  height: 1px;
  background-color: white;
}
.footer img {
  width: auto;
}
@media (max-width: 500px) {
  .footer img {
    width: 30px;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .bg-video {
    display: none;
  }
  .container {
    background: url("img/fundo-mobile.png") no-repeat 0 -160px;
    background-size: cover;
  }
}

/*# sourceMappingURL=style.css.map */
