/* ========================================== */
/* VARIÁVEIS DE COR E BASE                    */
/* ========================================== */
:root{
  --bg:#0e0e10;
  --panel:#151519;
  --ink:#f7f7f8;
  --muted:#b8b9c0;
  --brand:#ffd000;
  --brand-ink:#0c0c0f;
  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

img{max-width:100%;display:block}

.container{width:min(1100px,92%);margin-inline:auto}

/* ========================================== */
/* TELA DE CARREGAMENTO (PRELOADER)           */
/* ========================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-content {
  text-align: center;
  width: 200px;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 20px auto;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 208, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--brand);
  animation: loading 1s infinite linear;
}

@keyframes loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* ========================================== */
/* CABEÇALHO E LOGO                           */
/* ========================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(14,14,16,.75);
  border-bottom:1px solid #1f1f25;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
}

.logo{
  display:flex;
  gap:.6rem;
  align-items:center;
  color:var(--ink);
  text-decoration:none;
  font-weight:800;
  font-family:Montserrat,Inter,sans-serif;
}

.logo-img {
  height: 40px; /* Altere para aumentar/diminuir a logo no menu */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ========================================== */
/* MENU E BOTÕES                              */
/* ========================================== */
.menu{
  display:flex;
  gap:1.2rem;
  align-items:center;
}

.menu a{
  color:var(--ink);
  text-decoration:none;
  font-weight:600;
  opacity:.92;
}

.menu a:hover{
  opacity:1;
}

.btn{
  background:var(--brand);
  color:var(--brand-ink);
  padding:.8rem 1.1rem;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  box-shadow:var(--shadow);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid transparent;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--outline{
  background:transparent;
  border-color:var(--brand);
  color:var(--ink);
}

.btn--sm{
  padding:.5rem .9rem;
  font-weight:700;
}

.btn--lg{
  padding:1rem 1.25rem;
  font-size:1.05rem;
}

.btn--block{
  display:block;
  width:100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:3px;
}

/* Hamburger Icon Mobile */
.hamburger{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:6px 0;
  transition:.3s;
}

.hamburger.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* ========================================== */
/* HERO SECTION (INÍCIO)                      */
/* ========================================== */
.hero{
  position:relative;
  isolation:isolate;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(60% 60% at 75% 30%, rgba(255,208,0,.25), transparent 60%),
    radial-gradient(70% 70% at 10% 80%, rgba(255,208,0,.18), transparent 60%),
    linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  filter:saturate(1.05) contrast(1.02) brightness(.95);
}

.hero-inner{
  padding:120px 0 96px;
}

.hero h1{
  font-family:Montserrat,Inter,sans-serif;
  font-size:clamp(2.2rem,5vw,3.6rem);
  line-height:1.1;
  margin:0 0 .4rem;
}

.hero .lead{
  max-width:720px;
  font-size:1.1rem;
  color:var(--muted);
  margin:0 0 1.4rem;
}

.accent{
  color:var(--brand);
}

.cta{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}

.badges{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:1.2rem;
}

.badges span{
  background:rgba(255,255,255,.08);
  border:1px solid #2a2a33;
  padding:.45rem .7rem;
  border-radius:999px;
  font-size:.9rem;
}

/* ========================================== */
/* SEÇÕES GERAIS E CARDS                      */
/* ========================================== */
.section{
  padding:80px 0;
}

.section--alt{
  background:linear-gradient(180deg,#0f0f13,#0c0c10);
}

.section-head h2{
  font-family:Montserrat,Inter,sans-serif;
  font-size:clamp(1.6rem,3.2vw,2.2rem);
  margin:0;
}

.section-head p{
  color:var(--muted);
}

.grid{
  display:grid;
  gap:22px;
}

.cards{
  grid-template-columns:repeat(6,1fr);
}

.cards .card{
  grid-column:span 2;
}

.card{
  background:var(--panel);
  border:1px solid #22222b;
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  min-height:180px;
}

.card .icon{
  font-size:26px;
  margin-bottom:8px;
}

.card h3{
  margin:.2rem 0 .4rem;
}

.card p{
  color:var(--muted);
}

/* ========================================== */
/* SOBRE NÓS                                  */
/* ========================================== */
.about{
  display:grid;
  grid-template-columns:1.5fr .9fr;
  gap:26px;
}

.about-text p{
  color:var(--muted);
}

.ticks{
  list-style:none;
  padding:0;
  margin:14px 0 0;
}

.ticks li{
  margin:6px 0;
  padding-left:22px;
  position:relative;
}

.ticks li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--brand);
  font-weight:800;
}

.about-card{
  background:linear-gradient(180deg,#17171d,#13131a);
  border:1px solid #23232c;
  border-radius:var(--radius);
  padding:22px;
}

/* ========================================== */
/* ANTES E DEPOIS (SLIDER)                    */
/* ========================================== */
.before-after{
  max-width:900px;
  margin:0 auto;
}

.ba-wrap{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid #22222b;
  box-shadow:var(--shadow);
}

.ba-img{
  width:100%;
  height:auto;
}

.ba-after{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  clip-path:inset(0 50% 0 0);
}

.ba-line{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:var(--brand);
  transform:translateX(-50%);
  pointer-events:none;
}

.ba-slider{
  width:100%;
  margin-top:16px;
}

/* ========================================== */
/* GALERIA                                    */
/* ========================================== */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #22222b;
  box-shadow:var(--shadow);
}

/* ========================================== */
/* REVIEWS E FEATURES (SE NECESSÁRIO)         */
/* ========================================== */
.reviews{
  grid-template-columns:repeat(3,1fr);
}

.review{
  background:var(--panel);
  border:1px solid #22222b;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.stars{
  color:var(--brand);
  font-size:1.1rem;
  margin-bottom:10px;
}

/* ========================================== */
/* AGENDAMENTO E CONTATO                      */
/* ========================================== */
.booking-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 26px;
}

.booking-layout{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:22px;
  align-items:start;
}

.booking-info h3{
  margin-top:0;
}

.booking-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.booking-note{
  display:block;
  color:var(--muted);
  margin-top:14px;
}

.booking-frame-wrap{
  background:var(--panel);
  border:1px solid #22222b;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:760px;
}

.booking-frame{
  display:block;
  width:100%;
  min-height:760px;
  border:0;
  background:#fff;
}

.contact-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.disclaimer{
  display:block;
  color:var(--muted);
  text-align:center;
  margin-top:14px;
}

/* ========================================== */
/* FOOTER E STICKY BUTTON                     */
/* ========================================== */
.footer{
  border-top:1px solid #1f1f26;
  background:#0b0b0e;
}

.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:70px;
}

.to-top{
  color:var(--ink);
  text-decoration:none;
  border:1px solid #2a2a33;
  border-radius:10px;
  padding:.3rem .6rem;
}

.sticky-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:100;
  background:var(--brand);
  color:var(--brand-ink);
  text-decoration:none;
  font-weight:800;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}

.sticky-call:hover{
  transform:translateY(-2px);
}

/* ========================================== */
/* ANIMAÇÕES (REVEAL)                         */
/* ========================================== */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:600ms ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ========================================== */
/* RESPONSIVIDADE (MEDIA QUERIES)             */
/* ========================================== */
@media (max-width:1000px){
  .booking-layout{
    grid-template-columns:1fr;
  }

  .pricing,
  .reviews{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .cards{
    grid-template-columns:repeat(2,1fr);
  }

  .cards .card{
    grid-column:auto;
  }

  .features{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:860px){
  .about{
    grid-template-columns:1fr;
  }

  .hamburger{
    display:block;
  }

  .menu{
    position:absolute;
    right:16px;
    top:72px;
    background:#131318;
    border:1px solid #22222b;
    border-radius:14px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    display:none;
    width:min(240px,86vw);
  }

  .menu a{
    padding:.6rem .8rem;
    border-radius:10px;
  }

  .menu.show{
    display:flex;
  }
}

@media (max-width:560px){
  .cards,
  .gallery{
    grid-template-columns:1fr;
  }

  .hero-inner{
    padding:100px 0 82px;
  }

  .booking-frame-wrap,
  .booking-frame{
    min-height:680px;
  }

  .sticky-call{
    right:14px;
    bottom:14px;
    padding:13px 16px;
  }

  .gallery img{
    height:220px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}