*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Outfit',sans-serif;
  background:#f5f2eb;
  color:#102131;
}

/* =========================================
   HEADER
========================================= */

.header{
  width:100%;
  height:110px;

  padding:0 70px;

  display:flex;
  align-items:center;
  justify-content:center;

  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  background:
  rgba(245,242,235,0.82);

  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,0.04);
}

.logo{
  position:absolute;
  left:55px;
}

.logo img{
  height:88px;
  transition:0.35s ease;
}

.logo img:hover{
  transform:scale(1.03);
}

.menu{
  display:flex;
  align-items:center;
  gap:70px;
}

.menu a{
  text-decoration:none;

  color:#102131;

  font-size:1.08rem;
  font-weight:500;

  letter-spacing:0.3px;

  position:relative;

  transition:0.3s ease;
}

/* LINHA PREMIUM */

.menu a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#d6ab45;

  border-radius:20px;

  transition:0.35s ease;
}

.menu a:hover{
  color:#d6ab45;
}

.menu a:hover::after{
  width:100%;
}

.menu a.active{
  color:#d6ab45;
}

.menu a.active::after{
  width:100%;
}



/* HERO */

.legal-hero{
  padding-top:220px;
  padding-bottom:100px;

  background:
  linear-gradient(
    180deg,
    #f5f2eb 0%,
    #efe9dd 100%
  );
}

.hero-content{
  width:min(1200px,90%);
  margin:auto;
}

.hero-mini{
  display:block;

  color:#d8b25a;

  letter-spacing:5px;

  margin-bottom:25px;
}

.hero-content h1{
  font-size:5rem;

  line-height:0.95;

  letter-spacing:-3px;
}

.hero-content p{
  margin-top:35px;

  max-width:700px;

  color:#5c7280;

  line-height:1.8;

  font-size:1.15rem;
}

.privacidade{
  padding:180px 7% 100px;
}

.privacidade-container{
  max-width:900px;
  margin:auto;
}

.privacidade h1{
  font-size:4rem;
  color:#1f2f3a;
  margin-bottom:30px;
}

.privacidade h2{
  margin-top:50px;
  margin-bottom:18px;

  color:#1f2f3a;
  font-size:1.6rem;
}

.privacidade p,
.privacidade li{
  font-size:1.08rem;
  line-height:1.9;
  color:#5c7280;
}

.privacidade ul{
  padding-left:25px;
  margin-top:15px;
}

.ultima-atualizacao{
  margin-top:60px;
  font-style:italic;
}

/* MOBILE */

@media(max-width:768px){

  .hero-content h1{
    font-size:3rem;
  }

  .legal-container{
    padding:35px 25px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:950px){

  .header{
    height:90px;
    padding:0 24px;
  }

  .logo{
    left:24px;
  }

  .logo img{
    height:70px;
  }

  .menu{
    gap:22px;
  }

  .menu a{
    font-size:0.95rem;
  }

  .hero-explorar{
    padding-top:150px;
    padding-bottom:70px;
  }

  .hero-content h1{
    font-size:4.1rem;
    line-height:0.95;

    letter-spacing:-2px;
  }

  .hero-content p{
    font-size:1.08rem;
    line-height:1.8;

    margin-top:30px;
  }

  .destinos-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .card-img{
    height:240px;
  }

}

/* =========================================
   MOBILE PEQUENO
========================================= */

@media(max-width:600px){

  .header{
    justify-content:flex-end;
  }

  .menu{
    gap:14px;
  }

  .menu a{
    font-size:0.88rem;
  }

  .hero-explorar{
    padding-top:140px;
    padding-bottom:60px;
  }

  .hero-content{
    width:90%;
  }

  .hero-mini{
    letter-spacing:5px;
    font-size:0.78rem;

    margin-bottom:24px;
  }

  .hero-content h1{
    font-size:3rem;
    line-height:0.98;

    letter-spacing:-1px;
  }

  .hero-content p{
    margin-top:24px;

    font-size:1rem;
    line-height:1.8;
  }

  .filtros{
    width:90%;

    gap:10px;

    margin-bottom:45px;

    overflow-x:auto;
    flex-wrap:nowrap;

    padding-bottom:4px;

    scrollbar-width:none;
  }

  .filtros::-webkit-scrollbar{
    display:none;
  }

  .filtro{
    white-space:nowrap;

    padding:12px 20px;

    font-size:0.9rem;
  }

  .destinos-grid{
    width:90%;
  }

  .card{
    border-radius:28px;
  }

  .card-img{
    height:220px;
  }

  .card-content{
    padding:24px;
  }

  .card-content h3{
    font-size:1.8rem;
  }

}




/* =========================================
   HAMBURGER MENU
========================================= */

.hamburger{
  display: none;

  width: 34px;
  height: 24px;

  position: relative;

  cursor: pointer;

  z-index: 2001;
}

.hamburger span{
  position: absolute;

  width: 100%;
  height: 2px;

  background:#0f2233;

  box-shadow:
  0 1px 2px rgba(0,0,0,0.08);

  border-radius: 20px;

  transition: 0.3s ease;
}

/* linhas */
.hamburger span:nth-child(1){
  top: 0;
}

.hamburger span:nth-child(2){
  top: 10px;
}

.hamburger span:nth-child(3){
  top: 20px;
}

/* quando scroll */
.header.scrolled .hamburger span{
  background: #1f2f3a;
}

/* MOBILE */
@media (max-width: 768px){

  .hamburger{
    display: block;
  }

  /* esconder menu inicialmente */
  .menu{
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 40px;

    transition: right 0.4s ease;

    z-index: 2000;
  }

  /* menu aberto */
  .menu.active{
    right: 0;
  }

  .menu a{
    color: #1f2f3a !important;

    font-size: 1.5rem;
  }

  /* animação hamburger */
  .hamburger.active span:nth-child(1){
    transform: rotate(45deg);
    top: 10px;
  }

  .hamburger.active span:nth-child(2){
    opacity: 0;
  }

  .hamburger.active span:nth-child(3){
    transform: rotate(-45deg);
    top: 10px;
  }

  /* cruz preta quando menu abre */
  .hamburger.active span{
    background: #1f2f3a;
  }

}
