/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  scroll-behavior:smooth;
}
body{
  font-family:'Inter', sans-serif;
  overflow-x:hidden;
  background:#000;
}

/* HERO */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* VIDEO */
.bg-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%, -50%);
}

/* HAMBURGER */
.hamburger{
  position:fixed;
  top:35px;
  left:50px;
  z-index:1001;
  cursor:pointer;
  background:none;
  border:none;
  padding:8px;
  mix-blend-mode: difference;
}
.hamburger span{
  display:block;
  width:30px;
  height:2px;
  background: white;
  margin:7px 0;
  transition:transform 0.35s ease, background 0.35s ease;
  
}
.hamburger.active span{
  background:white;
}
.hamburger.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  transform:translateY(-7px) rotate(-45deg);
}

/* BACKDROP */
.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  visibility:hidden;
  transition:opacity 0.5s ease, visibility 0.5s ease;
  z-index:999;
  backdrop-filter: blur(4px);
}
.menu-backdrop.active{
  opacity:1;
  visibility:visible;
}
body.menu-open header{
  filter: blur(4px);
}
/* SIDE MENU */
.side-menu{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:420px;
  max-width:85vw;
  background:#fdfdfb;
  z-index:1000;
  padding:80px 50px 50px;
  display:flex;
  flex-direction:column;
  gap:60px;
  transform:translateX(-100%);
  transition:transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:10px 0 40px rgba(0,0,0,0.15);
  will-change: transform;
}
.side-menu.active{
  transform:translateX(0);
}
.side-menu-logo{
  margin-bottom:10px;
}
.side-menu-logo img{
  height:180px;
  object-fit:contain;
}
.side-menu nav{
  display:flex;
  flex-direction:column;
  gap:42px;
}
.side-menu nav a{
  color:#111;
  text-decoration:none;
  font-family:'Inter', sans-serif;
  font-size:20px;
  font-weight:500;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:0;
  transform:translateX(-15px);
  transition:opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}
.side-menu.active nav a{
  opacity:1;
  transform:translateX(0);
}
.side-menu.active nav a:nth-child(1){ transition-delay:0.10s; }
.side-menu.active nav a:nth-child(2){ transition-delay:0.15s; }
.side-menu.active nav a:nth-child(3){ transition-delay:0.20s; }
.side-menu.active nav a:nth-child(4){ transition-delay:0.25s; }
.side-menu.active nav a:nth-child(5){ transition-delay:0.30s; }
.side-menu nav a:hover{
  color:#9a8054;
  transform:translateX(5px);
}

body.menu-open {
  position: fixed;
  width: 100%;
}

.side-menu nav a::after{
  content:"";
  display:block;
  width:0;
  height:1px;
  background:#9a8054;
  transition:width .4s ease;
}

.side-menu nav a:hover::after{
  width:100%;
}

/* OVERLAY (escurece o vídeo todo, ligeiramente) */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

/* VINHETA RADIAL (escurece mais os cantos/bordas) */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.40) 70%,
    rgba(0,0,0,0.60) 100%
  );
  z-index:0;
}

/* FAIXA ESCURA NO TOPO (dá contraste ao logo, sem criar uma forma visível) */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:300px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0) 100%
  );
  z-index:1;
  pointer-events:none;
}

/* HEADER */
header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:35px 50px;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

/* LOGO */
.logo img{
  height:200px;
  object-fit:contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.8));
}



/* HERO CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:white;
  z-index:5;
  animation:fadeUp 1.8s ease forwards;
}
.hero-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:90px;
  font-weight:300;
  letter-spacing:5px;
}
.hero-content p{
  margin-top:20px;
  font-size:18px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:0.85;
}

/* FADE */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translate(-50%, -40%);
  }
  to{
    opacity:1;
    transform:translate(-50%, -50%);
  }
}



@keyframes scrollAnim{
  0%{
    transform:translateX(-50%) translateY(0);
  }
  50%{
    transform:translateX(-50%) translateY(10px);
  }
  100%{
    transform:translateX(-50%) translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  header{
    padding:25px;
  }
  .logo img{
    height:90px;
  }
  .hero-content h1{
    font-size:52px;
  }
  .hero-content p{
    font-size:14px;
    letter-spacing:2px;
  }
  .hamburger{
    top:25px;
    left:25px;
  }
  .side-menu{
    padding:70px 35px 35px;
  }
  .side-menu-logo img{
    height:120px;
  }
}



/* ABOUT SECTION */
.about{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  min-height:100vh;
  background:#f7f5f0;
  align-items:center;
}

/* IMAGE */
.about-image{
  padding:60px;
}

.about-image img{
  width:100%;
  height:80vh;
  object-fit:cover;
  border-radius:12px;
}

.img-cover{
  width:100%;
  height:80vh;
  object-fit:cover;
  border-radius:12px;
}



/* CONTENT */
.about-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:120px 80px;
  color:#111;
}

/* SMALL TAG */
.section-tag{
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#9a8054;
  margin-bottom:25px;
}

/* TITLE */
.about-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:54px;
  font-weight:300;
  line-height:1.1;
  margin-bottom:30px;
}


/* TEXT */
.about-content p{
  font-size:16.5px;
  line-height:1.9;
  color:#444;
  margin-bottom:20px;
  max-width:520px;
}


/* RESPONSIVE */
@media(max-width:900px){

  .about{
    grid-template-columns:1fr;
  }

  .about-image{
    padding:0;
    height:auto;
  }

  .about-image img,
  .img-cover{
    height:400px;
    border-radius:0;
  }

  .about-content{
    padding:70px 35px;
  }

  .about-content h2{
    font-size:42px;
  }

  .about-content p{
    font-size:16px;
  }

}

@media(max-width:768px){

  .about-image img,
  .img-cover{
    height:300px;
  }

  .about-content{
    padding:50px 25px;
  }

  .about-content h2{
    font-size:36px;
  }

  .about-content p{
    font-size:15px;
    line-height:1.8;
  }

}


.routes-teaser{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:80vh;
  align-items:center;
  background:#f7f5f0;
}

.routes-text{
  padding:120px 80px;
}

.routes-text h2{
  font-family:'Cormorant Garamond', serif;
  font-size:54px;
  font-weight:300;
  margin-bottom:20px;
}

.routes-text p{
  font-size:16.5px;
  line-height:1.9;
  color:#444;
  max-width:520px;
  margin-bottom:30px;
}

/* BOTÃO */
.btn-primary{
  display:inline-block;
  padding:14px 28px;
  background:#111;
  color:#fff;
  text-decoration:none;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:12px;
  transition:all .3s ease;
}

.btn-primary:hover{
  background:#9a8054;
  transform:translateY(-2px);
}

.routes-image img{
  width:100%;
  height:80vh;
  object-fit:cover;
}

@media(max-width:900px){
  .routes-teaser{
    grid-template-columns:1fr;
  }

  .routes-text{
    padding:70px 35px;
  }

  .routes-text h2{
    font-size:42px;
  }

  .routes-image img{
    height:400px;
  }
}

.footer{
  background:#111;
  color:#fff;
  padding:100px 40px 50px;
  position:relative;
}

.footer-content{
  max-width:1200px;
  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;

  text-align:center;
}

.footer-logo{
  margin-bottom:35px;
}

.footer-logo img{
  height:130px;
  object-fit:contain;
  opacity:.95;
}

.footer-links{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{
  color:rgba(255,255,255,.75);
  text-decoration:none;

  font-size:13px;

  letter-spacing:3px;

  text-transform:uppercase;

  transition:.3s;
}

.footer-links a:hover{
  color:#9a8054;
}

.footer-divider{
  width:120px;
  height:1px;

  background:rgba(255,255,255,.15);

  margin:45px 0 30px;
}

.footer-info p{
  color:rgba(255,255,255,.55);

  font-size:13px;

  line-height:1.8;
}

.footer-info a{
  color:#fff;

  text-decoration:none;

  transition:.3s;
}

.footer-info a:hover{
  color:#9a8054;
}

.footer-separator{
  margin:0 10px;

  opacity:.35;
}
.footer{
  overflow:hidden;
}

.footer::before{
  content:"";

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:300px;
  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(154,128,84,.8),
    transparent
  );
}
 
