:root{
  --bg:#050a14;
  --panel:#081428;
  --panel2:#07101f;
  --text:#e8eef6;
  --muted:#a9bbcf;
  --line:rgba(255,255,255,.08);
  --blue:#1f6feb;
  --blue2:#0b5bd3;
  --ok:#40c463;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color:var(--text);
  line-height:1.55;
  position: relative;
  overflow-x: hidden;
}
body:before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("../assets/bg-stars.svg");
  background-size: cover;
  background-position: center;
  opacity: .55;
  pointer-events: none;
  z-index: -2;
}
body:after{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 800px at 70% 10%, rgba(31,111,235,.18), transparent 60%),
              radial-gradient(900px 700px at 20% 0%, rgba(31,111,235,.10), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
  pointer-events: none;
  z-index: -1;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(5,10,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:46px; height:46px; border-radius:12px; box-shadow: var(--shadow); object-fit:contain; background:#000}
.brand .name{font-weight:800; letter-spacing:.4px}
.brand .sub{font-size:12.5px; color:var(--muted); margin-top:1px}
.nav{display:flex; gap:16px; align-items:center;}
.nav a{
  text-decoration:none; color:var(--muted);
  font-weight:600; font-size:14px;
  padding:8px 10px; border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.cta{display:flex; gap:10px; align-items:center;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06)}
.btn.primary{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  border-color: rgba(31,111,235,.55);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.35);
  color: var(--muted);
  font-size:13px;
}

.hero{padding:44px 0 20px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main{padding: 26px; position:relative; overflow:hidden;}
.hero-main:before{
  content:"";
  position:absolute; inset:-30%;
  background:
    radial-gradient(380px 260px at 80% 20%, rgba(31,111,235,.40), transparent 55%),
    radial-gradient(520px 360px at 10% 30%, rgba(31,111,235,.16), transparent 60%);
  filter: blur(6px);
  opacity:.9;
  pointer-events:none;
}
.hero-main > *{position:relative}
.h1{font-size:42px; line-height:1.08; margin:10px 0 12px; letter-spacing:-.6px}
.lead{color:var(--muted); font-size:16px; margin:0 0 16px}
.checks{display:grid; gap:8px; margin:14px 0 18px}
.check{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}
.dot{
  width:20px; height:20px; border-radius:6px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(64,196,99,.12);
  border:1px solid rgba(64,196,99,.35);
  flex:0 0 20px;
  margin-top:2px;
}
.dot svg{width:14px; height:14px; fill: var(--ok)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px}
.smallnote{font-size:13px; color:var(--muted); margin-top:10px}

.hero-side{padding: 18px}
.kv{
  background: rgba(0,0,0,.25);
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.kv-row{display:flex; gap:10px; padding:10px 6px; border-bottom:1px solid var(--line)}
.kv-row:last-child{border-bottom:none}
.kv-label{color:var(--muted); font-weight:700; font-size:13px; min-width: 92px}
.kv-val{font-weight:800}
.kv a{color:var(--text); text-decoration:none}
.kv a:hover{text-decoration:underline}

.section{padding: 26px 0}
.section h2{margin:0 0 12px; font-size:26px; letter-spacing:-.3px;}
.section p{color:var(--muted); margin:0 0 14px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.service{
  padding:16px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border:1px solid var(--line);
  height:100%;
}
.service h3{margin:8px 0 6px; font-size:16px}
.service p{margin:0; font-size:14px; color:var(--muted)}
.icon{
  width:40px; height:40px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(31,111,235,.35);
  background: rgba(31,111,235,.12);
}
.icon svg{width:20px; height:20px; fill: var(--text); opacity:.95}

.notice{
  padding: 16px;
  border-radius: 18px;
  border:1px solid rgba(255, 206, 0, .25);
  background: rgba(255, 206, 0, .08);
}
.notice strong{color: #ffe17a}
.notice ul{margin:10px 0 0 18px; color: var(--muted)}
.notice li{margin: 6px 0}

.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.gimg{
  border-radius: 18px;
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(0,0,0,.2);
  aspect-ratio: 3 / 2;
  position:relative;
}
.gimg img{width:100%; height:100%; object-fit:cover; display:block}
.gcap{
  position:absolute; left:12px; right:12px; bottom:10px;
  background: rgba(0,0,0,.55);
  border:1px solid var(--line);
  color: var(--muted);
  padding:8px 10px;
  border-radius: 14px;
  font-size:13px;
}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch;}
.map-wrap{
  overflow:hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  min-height: 360px;
}
.map-wrap iframe{width:100%; height:100%; border:0}
.footer{
  padding: 26px 0 34px;
  border-top:1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
.whatsapp-float{position: fixed; right: 16px; bottom: 16px; z-index: 60;}
.whatsapp-float a{
  width: 56px; height:56px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: #1f6feb;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
}
.whatsapp-float svg{width:28px; height:28px; fill:#fff}
.whatsapp-float a:hover{transform: translateY(-2px)}

@media (max-width: 920px){ .hero-grid{grid-template-columns: 1fr} }
@media (max-width: 860px){
  .grid3{grid-template-columns: 1fr 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .split{grid-template-columns: 1fr}
  .h1{font-size:36px}
  .nav{display:none}
}
@media (max-width: 520px){
  .grid3{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .h1{font-size:32px}
}


/* ====== Visual mais forte (glow + textura) ====== */
.topbar{
  background: rgba(5,10,20,.62);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  position: sticky;
}
.topbar:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(31,111,235,.75), transparent);
  opacity:.65;
}
.hero{
  position: relative;
  padding: 38px 0 18px;
}
.hero:before{
  content:"";
  position:absolute;
  inset: -40px 0 auto 0;
  height: 520px;
  background-image: url("../assets/hero-texture.svg");
  background-size: cover;
  background-position: center;
  opacity: .95;
  pointer-events:none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero .container{position:relative}
.hero-main, .hero-side{
  backdrop-filter: blur(8px);
}
.hero-main{
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.34));
  border: 1px solid rgba(255,255,255,.10);
}
.hero-side{
  background: linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.26));
  border: 1px solid rgba(255,255,255,.10);
}
.h1{
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}
.section h2{
  position: relative;
  padding-bottom: 10px;
}
.section h2:after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31,111,235,.95), rgba(255,255,255,.0));
  box-shadow: 0 0 18px rgba(31,111,235,.35);
}
.service{
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.18));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 46px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service:hover{
  transform: translateY(-3px);
  border-color: rgba(31,111,235,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.icon{
  border-color: rgba(31,111,235,.55);
  background: rgba(31,111,235,.16);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.badge{
  border-color: rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
}
.btn.primary{
  box-shadow: 0 14px 40px rgba(31,111,235,.22), 0 18px 60px rgba(0,0,0,.45);
}
.gimg{
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.10);
}
.footer{
  background: rgba(0,0,0,.20);
}
