.topbar{
  position:sticky;
  top:0;
  z-index:100;
  padding:14px 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(6,6,6,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.topbar nav{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--muted);
}

.topbar nav a{
  transition:color .2s ease;
}

.topbar nav a:hover{
  color:var(--orange-2);
}

.brand-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-logo img{
  width:52px;
  height:52px;
  border-radius:15px;
  object-fit:cover;
  border:1px solid rgba(252,144,3,.25);
  box-shadow:0 0 18px rgba(252,144,3,.12);
}

.brand-logo strong{
  display:block;
  font-weight:950;
  letter-spacing:-.04em;
  line-height:1;
}

.brand-logo small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:.78rem;
}

.mobile-menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.mobile-menu-btn span{
  width:19px;
  height:2px;
  border-radius:5px;
  background:#fff;
}

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  padding:70px 6vw 46px;
  align-items:center;
}

.hero h1{
  font-size:clamp(2.6rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.08em;
  margin-bottom:18px;
}

.hero-text{
  color:var(--muted);
  line-height:1.75;
  font-size:1.08rem;
  max-width:700px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.hero-tags span{
  padding:10px 14px;
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  color:var(--muted);
  border-radius:999px;
  font-size:.92rem;
}

.hero-visual{
  display:flex;
  justify-content:center;
}

.section{
  padding:42px 6vw;
}

.section-head{
  margin-bottom:24px;
}

.center-head{
  text-align:center;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.section-head h2{
  font-size:clamp(2rem, 4.5vw, 3.8rem);
  line-height:.95;
  letter-spacing:-.07em;
  margin-bottom:10px;
}

.section-head p{
  color:var(--muted);
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}

.booking-section{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.wizard-wrapper{
  width:min(100%,1050px);
  margin:0 auto;
}

.footer{
  padding:34px 6vw 42px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer strong{
  color:#fff;
}

.footer p{
  margin:6px 0 0;
}

.footer-link{
  color:var(--orange-2);
}


/* V22 Local — navegação mais premium */
.topbar nav a:not(.btn){
  position:relative;
  font-weight:780;
}

.topbar nav a:not(.btn)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--orange-2),var(--orange));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.topbar nav a:not(.btn):hover::after{
  transform:scaleX(1);
}

.brand-logo img{
  border-radius:50% !important;
  width:48px;
  height:48px;
}
