/**************************/
/* IMPORTAÇÃO DE FONTES   */
/**************************/

@import url('https://fonts.googleapis.com/css2?family=Hind+Guntur:wght@300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/**************************/
/* BASE GLOBAL            */
/**************************/
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #171717;
  background: #f5f5f5 url("../images/gradiente.png") repeat-x top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #222222;
}

@media (min-width: 1024px) {
  p {
    font-size: 1.25rem;
  }
}

/**************************/
/* TIPOGRAFIA             */
/**************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #030303;
  line-height: 1.2;
}

h1 {
  font-weight: 600;
  color: #000;
  letter-spacing: -0.052rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04rem;
}

h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
}


.destacado {
  color: #5ffaf3;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/**************************/
/* MENU DE NAVEGAÇÃO      */
/**************************/
.main-nav {
  /* 1. Posicionamento e Conteúdo (Logo e Botão nas Extremidades) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0.5rem 1.5rem; */
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  /* Padding interno do CONTEÚDO */

  /* 2. Fixa o elemento e o prepara para o Pseudo-Elemento */
  position: fixed;
  top: 0;
  z-index: 1000;

  /* 3. Centraliza o bloco de 1200px na tela */
  max-width: 1200px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* 4. Pseudo-Elemento para o BACKGROUND AZUL de 100% */
.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  /* A Magia: Expande o BG além das bordas do elemento fixo */
  left: -50vw;
  right: -50vw;
  /* Garante que o fundo fique atrás do Logo e Botão */
  z-index: -1;
}

.logo {
  height: 1.15rem;
  width: auto;
  display: block;
}


.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1E3A8A;
  transition: background-color 0.4s ease, 0.3s;
}

/* Cores de botão por seção */
.menu-btn.color-1 span {
  background-color: #e8e8e8;
}

.menu-btn.color-2 span,
.menu-btn.color-3 span,
.menu-btn.color-5 span,
.menu-btn.color-6 span {
  background-color: #eaeaea;
}

.menu-btn.color-4 span,
.menu-btn.color-7 span {
  background-color: #000;
}


/**************************/
/* OVERLAY MENU           */
/**************************/
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.94);
  overflow-x: hidden;
  transition: 0.85s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 1%;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 60px;
  z-index: 1002;
}


/**************************/
/* BACKGROUNDS DAS PÁGINAS*/
/**************************/
.page1 {
  background: #f7f7f7 url("../images/1.png") no-repeat 100% 90% / 75vw;
}

.page2 {
  background: #f1f5f9 url("../images/p3.png") no-repeat 95% 90% / 22vh;
}

.page3 {
  background: #e1e2e3 url("../images/p2.png") no-repeat 95% 90% / 20vh;
  background-position: cover;
}

.page4 {
  background: #F5F5F5 url("../images/bg-p4s.png") no-repeat right / cover;
}

.page5 {
  background: #e1e1e1 url("../images/p5.png") no-repeat 95% 90% / 18vh;
  /* background-size: 120vh; */
}

.page6 {
  background: #f5f5f5 url("../images/bg-p6.png") no-repeat 95% 90% / 18vh;
}

.page7 {
  /* background: #e1e1e1 url("../images/bg-p7.png") no-repeat right / cover; */
  background: #e1e1e1 url("../images/p7.png") no-repeat 95% 90% / 20vh;
}

@media (min-width: 1024px) {
  .page4 {
    background: #cfcfcf url("../images/bg-p4.webp") no-repeat right / cover;
  }
}


/**************************/
/* SCROLL SNAP            */
/**************************/
.interface {
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
}


/**************************/
/* RESPONSIVIDADE         */
/**************************/
@media (max-width: 768px) {
  .p4-title {
    /* font-size: 1.8rem !important; */
    justify-content: flex-start;
    margin-top: 55vh;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #p4 .flex-col {
    padding-top: 40vh !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  #p4 h1 {
    font-size: 2.5rem !important;
  }
}


/**************************/
/* ANIMAÇÕES              */
/**************************/
.content-hidden {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in-h1 {
  transition: opacity 2.8s ease-out, transform 0.8s ease-out;
}

.animate-in-p {
  transition: opacity 5.8s ease-out, transform 5.8s ease-out;
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-in-h1-hero {
  opacity: 0;
  animation: slideInFromBottom 2.8s ease-out 1.25s forwards;
}

.animate-in-btn {
  opacity: 0;
  animation: slideInFromBottom 0.8s ease-out 1.2s forwards;
}


/**************************/
/* PROGRESS BAR           */
/**************************/
#progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  /* background-color: rgba(255, 255, 255, 0.2); */
  z-index: 1000;
  display: none;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background-color: #28b700;
  transition: width 0.1s linear;
}


/**************************/
/* BOTÕES                 */
/**************************/
.btn-solid-lg {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  border-radius: 22px;
  background-color: #157b00;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
  margin: 0 0.25rem 1.25rem;
}

.btn-solid-lg:hover {
  background-color: #20bf00;
  color: #ffffff;
  text-decoration: none;
}

.btn-solid-lg .fab {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
  font-size: 1rem;
}

.btn-solid-lg.secondary {
  border: 1px solid #4B5563;
  background: #4B5563;
  color: #ffffff;
}

.btn-solid-lg.secondary:hover {
  border: 1px solid #4B5563;
  background-color: #4B5563;
  color: #ffffff;
}

/* --- FIM DO CSS --- */