:root{
  --bg:#0b1220;
  --panel:#111a2e;
  --panel2:#0f172a;
  --text:#e7ecf5;
  --muted:#aab4c5;
  --line:rgba(255,255,255,.12);
  --accent:#60a5fa;
  --accent2:#22c55e;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(96,165,250,.22), transparent 60%),
              radial-gradient(900px 520px at 90% 10%, rgba(34,197,94,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:36px; height:36px; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(96,165,250,.9), rgba(34,197,94,.75));
  border-radius:12px;
  font-weight:800;
}
.brand__name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}
.nav__toggle{
  display:none;
  width:44px; height:40px; border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.nav__toggle span{
  display:block; width:18px; height:2px; margin:4px auto;
  background: var(--text); opacity:.9; border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(96,165,250,.35);
  background: rgba(96,165,250,.15);
  color:var(--text);
  font-weight:700;
}
.btn:hover{background: rgba(96,165,250,.22)}
.btn--ghost{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover{background: rgba(255,255,255,.08)}
.btn--small{padding:10px 12px; border-radius:12px; font-size:14px}

/* Hero */
.hero{padding:42px 0 22px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:18px;
  align-items:stretch;
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
h1{
  margin:14px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.1;
  letter-spacing:-.5px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  line-height:1.6;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 8px}
.hero__meta{
  display:grid; gap:10px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.meta__item{display:grid; gap:6px}
.meta__title{color:var(--muted); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.8px}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.card__title{margin:0 0 8px; font-size:18px}
.card__text{margin:0 0 14px; color:var(--muted); line-height:1.6}
.card__links{display:grid; gap:10px; margin:10px 0 14px}
.link{
  color: var(--accent);
  font-weight:700;
}
.link:hover{opacity:.9; text-decoration:underline}
.card__note{
  border-top:1px solid var(--line);
  padding-top:12px;
  color:var(--muted);
  font-size:14px;
}

/* Strip */
.strip{
  padding:14px 0 28px;
}
.strip__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.strip__item{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.strip__title{display:block; font-weight:800; margin-bottom:6px}
.strip__text{color:var(--muted); font-size:14px}

/* Sections */
.section{padding:44px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 8px;
  font-size:26px;
}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

/* Cards grid */
.grid{display:grid; gap:12px}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  background: rgba(17,26,46,.55);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}

/* CTA banner */
.cta-banner{
  margin-top:18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid rgba(34,197,94,.22);
  background: radial-gradient(600px 260px at 30% 0%, rgba(34,197,94,.18), transparent 60%),
              rgba(255,255,255,.03);
}
.cta-banner h3{margin:0 0 6px}
.cta-banner p{margin:0; color:var(--muted); line-height:1.6}

/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.steps li{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.step__num{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(96,165,250,.18);
  border:1px solid rgba(96,165,250,.25);
  font-weight:800;
}
.steps h3{margin:0 0 6px}
.steps p{margin:0; color:var(--muted); line-height:1.6}

/* Social */
.social{grid-template-columns: repeat(3, 1fr)}
.social__card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(17,26,46,.55);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.social__card h3{margin:0 0 8px}
.social__card p{margin:0 0 12px; color:var(--muted); line-height:1.6}

.note{
  margin-top:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
}

/* FAQ */
.faq{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(17,26,46,.50);
}
.faq__q{
  width:100%;
  text-align:left;
  padding:16px;
  border:0;
  border-bottom:1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight:800;
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
}
.faq__q:hover{background: rgba(255,255,255,.03)}
.faq__a{
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.7;
}
.faq__icon{font-weight:900; opacity:.9}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.contact__box{
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(17,26,46,.55);
}
.contact__box--alt{
  background: rgba(255,255,255,.03);
}
.contact__phone{font-size:20px; margin:10px 0 14px}
.contact__links{display:flex; gap:14px; flex-wrap:wrap; margin-top:14px}
.contact__links a{color:var(--muted); font-weight:700}
.contact__links a:hover{color:var(--text); text-decoration:underline}
.muted{color:var(--muted); line-height:1.6}

/* Footer */
.footer{
  padding:22px 0 90px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.10);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:14px}

/* WhatsApp Floating */
.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:18px;
  z-index:80;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
  font-weight:900;
  box-shadow: var(--shadow);
}
.whatsapp-float:hover{background: rgba(34,197,94,.26)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .social{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .strip__grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav__toggle{display:block}
  .nav.is-open{
    display:flex;
    position:absolute;
    top:62px; left:18px; right:18px;
    padding:12px;
    border-radius: var(--radius2);
    border:1px solid var(--line);
    background: rgba(11,18,32,.96);
    flex-direction:column;
    gap:12px;
  }
}
/* Antes e Depois */
.ba-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.ba-card{
  background: rgba(17,26,46,.55);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
}
.ba-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.ba-title h3{margin:0}
.ba-sub{color:var(--muted); font-size:13px; font-weight:600}

.ba-photos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.ba-photo{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.ba-photo img{
  display:block;
  width:100%;
  height:240px;
  object-fit:cover;
  cursor: zoom-in;
}
.ba-photo figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-weight:800;
  border-top:1px solid var(--line);
}

.ba-note{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:120;
  background: rgba(0,0,0,.75);
  display:grid;
  place-items:center;
  padding:18px;
}
.lightbox__img{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.lightbox__close{
  position:fixed;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size:26px;
  cursor:pointer;
}

@media (max-width: 980px){
  .ba-grid{grid-template-columns:1fr}
  .ba-photo img{height:220px}
}
.lightbox[hidden]{
  display: none !important;
}
.brand__logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  padding: 6px;
  border: 1px solid var(--line);
}


