/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

/* PALETA FULL BLACK */
:root{
  --bg:#000;
  --bg2:#0a0a0a;
  --surface:#111;
  --text:#f0f0f0;
  --muted:#9a9a9a;
  --gold:#cba86b;
  --stroke:#1a1a1a;
  --radius:14px;
}

/* BASE */
body{
  background:var(--bg);
  color:var(--text);
  font-family:"Segoe UI",Roboto,Arial,sans-serif;
  scroll-behavior:smooth;
}
.container{
  width:min(1120px,92%);
  margin:auto;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:#000c;
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--stroke);
}
.nav__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.2rem;
  font-weight:900;
}
.logo{height:48px}

.nav__menu{
  display:none;
  background:none;
  border:1px solid var(--stroke);
  padding:10px;
  border-radius:10px;
  color:var(--text);
}
.nav__links{
  display:flex;
  gap:18px;
}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  transition:.2s;
}
.nav__link:hover{
  color:var(--gold);
  background:#111;
}

/* HERO */
.hero{
  padding:120px 0 90px;
  text-align:center;
  background:linear-gradient(180deg,#000,#0a0a0a,#000);
}
.hero__title{
  font-size:clamp(2.5rem,5vw,3.6rem);
  font-weight:900;
  letter-spacing:-2px;
}
.gold{color:var(--gold)}
.hero__subtitle{
  color:var(--muted);
  margin-top:16px;
  max-width:620px;
  margin-inline:auto;
  line-height:1.6;
}
.hero__cta{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
}

/* BUTTONS */
.btn{
  padding:14px 22px;
  text-decoration:none;
  font-weight:800;
  border-radius:var(--radius);
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.2s;
}
.btn--primary{
  background:var(--gold);
  color:#000;
  box-shadow:0 0 20px #cba86b55;
}
.btn--primary:hover{
  transform:scale(1.05);
}
.btn--ghost{
  border:1px solid var(--gold);
  color:var(--gold);
}
.btn--ghost:hover{
  background:var(--gold);
  color:#000;
}

/* SECTIONS */
.slice{
  padding:80px 0;
  text-align:center;
}
.section-title{
  font-size:2.3rem;
  font-weight:900;
}
.section-lead{
  color:var(--muted);
  max-width:700px;
  margin:12px auto 0;
  font-size:1.1rem;
}

/* DIFERENCIAL */
.slice--alt{
  background:#0a0a0a;
}
.feature-box{
  background:#111;
  padding:26px;
  border-radius:16px;
  border:1px solid var(--stroke);
  margin-top:20px;
  max-width:700px;
  margin-inline:auto;
}
.big-icon{
  font-size:2.4rem;
  margin-bottom:12px;
}

/* CARROSSEL NOVO */
.carousel{
  width:100%;
  max-width:820px;
  margin:25px auto 0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:#000;
}
.carousel-track{
  display:flex;
  transition:transform .6s ease-in-out;
}
.slide{
  min-width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#000;
  padding:10px;
}
.slide img{
  width:100%;
  height:auto;
  max-height:600px;
  object-fit:contain;
  border-radius:14px;
}
@media(max-width:768px){
  .slide img{
    max-height:420px;
    width:100%;
    object-fit:contain;
  }
}

/* CONTROLES */
.carousel-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:15px;
}
.carousel-btn{
  background:#111;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:12px 14px;
  border-radius:12px;
  cursor:pointer;
  transition:.2s;
}
.carousel-btn:hover{
  background:var(--gold);
  color:#000;
}

/* CONTATO */
.contact-links{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  border:1px solid var(--gold);
  color:var(--gold);
  border-radius:14px;
  text-decoration:none;
  transition:.2s;
}
.contact-item:hover{
  background:var(--gold);
  color:#000;
}

/* FOOTER */
footer{
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--stroke);
}

/* MOBILE */
@media(max-width:800px){
  .nav__menu{display:block}
  .nav__links{
    display:none;
    flex-direction:column;
    background:#000;
    padding:20px;
    border-radius:14px;
    margin-top:12px;
  }
  .nav__links.open{display:flex}
}

/* WHATSAPP FLOAT */
.whats-float{
  position:fixed;
  width:64px;
  height:64px;
  bottom:26px;
  right:26px;
  background:var(--gold);
  color:#000;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:32px;
  text-decoration:none;
  box-shadow:0 0 18px #cba86baa;
  transition:.25s;
  z-index:999;
}
.whats-float:hover{
  transform:scale(1.12);
  background:#000;
  color:var(--gold);
}

/* PULSE */
.pulse{
  animation:pulseAnim .8s ease;
}
@keyframes pulseAnim{
  0%{transform:scale(1)}
  50%{transform:scale(1.18)}
  100%{transform:scale(1)}
}

/* SCROLL REVEAL */
.animate{
  opacity:0;
  transform:translateY(40px);
  transition:.8s ease;
}
.animate.visible{
  opacity:1;
  transform:translateY(0);
}
