:root{
  --bg:#0b0c10;
  --bg2:#12131a;
  --card: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);
  --text:#e9e9ef;
  --muted: rgba(255,255,255,.70);
  --gold:#f5b301;
  --gold2:#ffcf4a;
  --wa:#25D366;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --r: 18px;

  /* borda dourada padrão */
  --gold-border: rgba(245,179,1,.45);
  --gold-glow: rgba(245,179,1,.10);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 540px at 8% 0%, rgba(245,179,1,.25), transparent 60%),
    radial-gradient(900px 540px at 92% 10%, rgba(255,207,74,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 40px)); margin-inline:auto; }

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,12,16,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.logo{ display:flex; flex-direction:column; line-height:1; }
.logo__elite{
  font-weight:900;
  letter-spacing:.08em;
  color: var(--gold2);
  text-shadow: 0 0 24px rgba(245,179,1,.25);
}
.logo__guincho{
  font-weight:900;
  letter-spacing:.10em;
  opacity:.9;
}

.nav{ display:flex; gap: 16px; margin-left:auto; }
.nav a{
  opacity:.88;
  padding: 10px 12px;
  border-radius: 14px;
}
.nav a:hover{ background: rgba(255,255,255,.06); }

/* Mobile */
.burger{
  display:none;
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.burger span{
  display:block; width: 20px; height: 2px;
  background: rgba(255,255,255,.85);
  margin: 5px auto;
  border-radius: 2px;
}

.mobile-nav{
  display:none;
  padding: 10px 20px 16px;
  border-top: 1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding: 12px 10px;
  border-radius: 14px;
  opacity:.9;
}
.mobile-nav a:hover{ background: rgba(255,255,255,.06); }
.mobile-nav.show{ display:block; }

/* Hero */
.hero{
  position:relative;
  border-bottom: 1px solid var(--line);
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-1px;
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(245,179,1,.22), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(255,207,74,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  pointer-events:none;
}

.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  padding: 34px 0 28px;
  align-items:center;
}

.hero__content h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}
.hl{ color: var(--gold2); }

.hero__lead{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.hero__bullets{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 14px;
  margin: 12px 0 18px;
}
.bullet{
  display:flex; align-items:center; gap: 10px;
  color: rgba(255,255,255,.86);
}
.check{
  width: 22px; height: 22px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(245,179,1,.16);
  border: 1px solid rgba(245,179,1,.26);
  color: var(--gold2);
  font-weight: 900;
}

.hero__cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Buttons */
.btn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 14px 14px;
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-align:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .08s ease, background .12s ease, border-color .12s ease;
}
.btn span{ display:block; font-weight: 700; opacity:.95; }

.btn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.btn:active{ transform: scale(.985); }

.btn--wa{
  border-color: rgba(37,211,102,.35);
  background: linear-gradient(180deg, rgba(37,211,102,.22), rgba(37,211,102,.10));
}
.btn--wa:hover{
  background: linear-gradient(180deg, rgba(37,211,102,.28), rgba(37,211,102,.12));
}

.btn--call{
  border-color: rgba(245,179,1,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.22));
}
.btn--wide{ width:100%; }

/* Hero card */
.hero__card{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 220px;
}
.card-glow{
  position:absolute; inset:-80px;
  background:
    radial-gradient(500px 260px at 20% 20%, rgba(245,179,1,.35), transparent 60%),
    radial-gradient(520px 280px at 90% 40%, rgba(255,207,74,.18), transparent 60%),
    repeating-linear-gradient(115deg,
      rgba(245,179,1,.00) 0px,
      rgba(245,179,1,.00) 28px,
      rgba(245,179,1,.14) 29px,
      rgba(245,179,1,.00) 56px
    );
  opacity:.55;
  pointer-events:none;
}
.hero__image{
  position:relative;
  height:100%;
  display:grid;
  place-items:center;
  padding: 20px;
}
.hero__image img{
  width: min(420px, 100%);
  height:auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));
}

/* Sections */
.section{
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section h2{
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 16px;
  box-shadow:
    0 12px 30px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,207,74,.10) inset,
    0 0 22px var(--gold-glow);
}
.card__title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  margin-bottom: 10px;
}
.ico{
  width: 28px; height: 28px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(245,179,1,.14);
  border: 1px solid rgba(245,179,1,.22);
}
.card p{ margin:0; color: var(--muted); line-height: 1.6; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.step{
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  box-shadow:
    0 12px 30px rgba(0,0,0,.20),
    0 0 0 1px rgba(255,207,74,.08) inset,
    0 0 18px rgba(245,179,1,.06);
}
.step__num{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(245,179,1,.18);
}
.step__num.wa{
  background: linear-gradient(180deg, rgba(37,211,102,.75), rgba(37,211,102,.30));
  color: #06140b;
  border: 1px solid rgba(37,211,102,.35);
  box-shadow: 0 12px 26px rgba(37,211,102,.14);
}
.step__body h3{ margin: 0 0 6px; font-size: 1.05rem; }
.step__body p{ margin: 0; color: var(--muted); line-height: 1.6; }

/* CTA bar (sem borda dourada) */
.cta-bar{
  margin-top: 16px;
  background: rgba(0,0,0,.20);
  border-radius: 999px;
  padding: 10px;
  display:flex;
  justify-content:center;
}

/* Reviews */
.reviews__head{ margin-bottom: 14px; }
.stars{
  color: var(--gold2);
  letter-spacing: .18em;
  font-weight: 900;
  margin-bottom: 8px;
}
.reviews__head p{ margin: 6px 0 0; }
.muted{ color: var(--muted); }

.reviews{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.review{
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 16px;
  box-shadow:
    0 12px 30px rgba(0,0,0,.20),
    0 0 0 1px rgba(255,207,74,.08) inset,
    0 0 18px rgba(245,179,1,.06);
}
.review__top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.avatar{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight: 900;
  color:#111;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
}
.review__name{ font-weight: 900; }
.review__stars{ color: var(--gold2); letter-spacing: .12em; font-size: .95rem; }
.review p{ margin:0; color: rgba(255,255,255,.82); line-height: 1.6; }

/* animação usada no rotator de avaliações */
.review.is-fading{
  animation: fadeSwap .35s ease;
}
@keyframes fadeSwap{
  from{ opacity:.35; transform: translateY(3px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Final */
.section--final{
  border-bottom: none;
  padding-bottom: 22px;
}
.final{
  text-align:center;
  padding-top: 10px;
}
.final h2{
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
}
.final p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
}
.final__cta{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  justify-content:center;
}
.mini-phone{
  opacity:.92;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

/* Frase dourada */
.gold{
  color: var(--gold2) !important;
  text-shadow: 0 0 18px rgba(245,179,1,.25);
  font-size: 1.2em;
  font-weight: 900;
}

/* Footer */
.footer{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color: rgba(255,255,255,.70);
}
.to-top{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  display:grid; place-items:center;
}

/* WhatsApp floating */
.float-wa{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  border:1px solid rgba(37,211,102,.30);
  background: linear-gradient(180deg, rgba(37,211,102,.25), rgba(37,211,102,.12));
  box-shadow: var(--shadow);
  z-index: 60;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}
.gitem{
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 0;
  overflow:hidden;
  cursor:pointer;
  box-shadow:
    0 12px 30px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,207,74,.08) inset,
    0 0 18px rgba(245,179,1,.06);
  transition: transform .10s ease, border-color .12s ease, background .12s ease;
}
.gitem:hover{
  border-color: rgba(255,207,74,.55);
  background: rgba(255,255,255,.05);
}
.gitem:active{ transform: scale(.99); }
.gitem img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display:block;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 80;
}
.lightbox.show{ display:block; }
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
}
.lightbox__panel{
  position:relative;
  width: min(1000px, calc(100% - 28px));
  margin: 6vh auto;
  border: 1px solid rgba(245,179,1,.22);
  background: rgba(10,10,12,.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.70);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}
.lightbox__panel img{
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  display:block;
}
.lightbox__close{
  position:absolute;
  top: 10px; right: 10px;
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.lightbox__hint{
  padding: 10px 14px;
  color: rgba(255,255,255,.70);
  font-size: .95rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__cta{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .hero__bullets{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gitem img{ height: 200px; }
}

@media (max-width: 520px){
  .section h2{ font-size: 26px; }
  .footer{ flex-direction:column; text-align:center; }
  .gallery{ grid-template-columns: 1fr; }
  .gitem img{ height: 230px; }
}

.loc-card{
  margin-top: 14px;
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 16px;
  box-shadow:
    0 12px 30px rgba(0,0,0,.20),
    0 0 0 1px rgba(255,207,74,.08) inset,
    0 0 18px rgba(245,179,1,.06);
}

.loc-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-loc{
  color: #fff !important;
  font-weight: 900 !important;
}


.map-wrap{
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.25);
}

.map-wrap iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display:block;
}

.map-link{
  display:inline-block;
  margin-top: 10px;
  opacity: .9;
  border-bottom: 1px dashed rgba(255,255,255,.25);
}
.map-link:hover{ opacity:1; }
