/* ========================================= 
   RESET
========================================= */

*{
  margin:0;
  padding:0; 
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit', sans-serif;

  background:
  radial-gradient(
    circle at top right,
    rgba(214,171,69,0.08),
    transparent 30%
  ),
  #f5f2eb;

  color:#102131;

  overflow-x:hidden;
}
 
/* =========================================
   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
========================================= */

.hero-explorar{
  position:relative;

  padding-top:190px;
  padding-bottom:90px;

  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    #f5f2eb 0%,
    #f1ede4 100%
  );
}

.hero-bg{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(214,171,69,0.13),
    transparent 30%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(16,33,49,0.05),
    transparent 28%
  );

  pointer-events:none;
}

.hero-content{
  width:min(1280px,88%);
  margin:auto;

  position:relative;
  z-index:2;
}

.hero-mini{
  display:block;

  color:#d6ab45;

  letter-spacing:8px;
  font-size:0.9rem;
  font-weight:500;

  margin-bottom:34px;
}

.hero-content h1{
  font-size:6.6rem;
  line-height:0.93;

  font-weight:800;

  max-width:1100px;

  letter-spacing:-5px;

  color:#102131;

  text-shadow:
  0 5px 18px rgba(0,0,0,0.04);
}

.hero-content p{
  margin-top:42px;

  max-width:820px;

  font-size:1.42rem;
  line-height:1.75;

  color:#29465f;
  opacity:0.92;
}

/* =========================================
   FILTROS
========================================= */

.filtros{
  width:min(1280px,88%);
  margin:auto;

  display:flex;
  flex-wrap:wrap;
  gap:16px;

  margin-bottom:80px;
}

.filtro{
  border:none;

  background:#ebe6dd;
  color:#102131;

  padding:16px 30px;

  border-radius:999px;

  font-family:'Outfit', sans-serif;
  font-size:1rem;
  font-weight:500;

  cursor:pointer;

  transition:0.35s ease;
}

.filtro:hover{
  transform:translateY(-3px);

  background:#e4ddd1;
}

.filtro.active{
  background:#d6ab45;
  color:white;

  box-shadow:
  0 10px 25px rgba(214,171,69,0.28);
}

/* =========================================
   GRID
========================================= */

.destinos-grid{
  width:min(1450px,91%);
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:42px;

  padding-bottom:120px;
}

/* =========================================
   CARD
========================================= */

.card{
  text-decoration:none;
  color:inherit;

  background:
  rgba(255,255,255,0.72);

  backdrop-filter:blur(10px);

  border-radius:34px;

  overflow:hidden;

  border:
  1px solid rgba(255,255,255,0.5);

  transition:0.45s ease;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.05);
}

.card:hover{
  transform:
  translateY(-10px)
  scale(1.01);

  box-shadow:
  0 35px 70px rgba(0,0,0,0.10);

  border-color:
  rgba(214,171,69,0.25);
}

/* IMAGEM */

.card-img{
  position:relative;

  height:300px;

  overflow:hidden;
}

.card-img::after{
  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.16),
    transparent 45%
  );

  pointer-events:none;
}

.card-img img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.7s ease;
}

.card:hover img{
  transform:scale(1.06);
}

/* CONTEÚDO */

.card-content{
  padding:30px;
}

.categoria{
  display:inline-block;

  margin-bottom:18px;

  color:#d6ab45;

  font-size:0.78rem;
  font-weight:700;

  letter-spacing:2px;
  text-transform:uppercase;
}

.card-content h3{
  font-size:2.1rem;
  line-height:1.1;

  font-weight:700;

  transition:0.3s ease;
}

.card:hover h3{
  transform:translateX(2px);
}

/* =========================================
   ANIMAÇÃO SCROLL
========================================= */

.card{
  opacity:0;
  transform:translateY(40px);

  animation:fadeUp 0.8s ease forwards;
}

.card:nth-child(2){
  animation-delay:0.08s;
}

.card:nth-child(3){
  animation-delay:0.16s;
}

.card:nth-child(4){
  animation-delay:0.24s;
}

.card:nth-child(5){
  animation-delay:0.32s;
}

.card:nth-child(6){
  animation-delay:0.40s;
}

@keyframes fadeUp{

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================================
   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;
  }

}


.info-row{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:18px;

  margin-top:10px;
}


.location-row{
  display:flex;
  align-items:center;

  gap:12px;

  margin-top:10px;
}

.map-icon{
  text-decoration:none !important;
}

