:root{
  --bg:#0b0f14;
  --panel:#101824;
  --panel2:#0f1722;
  --text:#eaf0ff;
  --muted:#a9b6d0;
  --line:rgba(255,255,255,.08);
  --brand:#5dd6ff;
  --brand2:#7c5cff;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius:18px;
}

*{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(1200px 600px at 20% -10%, rgba(93,214,255,.20), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(124,92,255,.18), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(12px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; gap:16px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-mark{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(93,214,255,.20);
}
.brand-name{font-weight:800; letter-spacing:.2px}

.nav{display:flex; gap:16px; margin-left:auto}
.nav a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.nav-toggle{
  display:none;
  margin-left:4px;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block; width:18px; height:2px; margin:4px auto;
  background:var(--text); opacity:.9;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:700;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  box-shadow:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:not(.btn-primary):hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn:active{transform:translateY(0)}
.btn-small{padding:10px 12px; border-radius:12px; font-size:14px}

.btn-primary{
  border-color:transparent;
  background: linear-gradient(135deg, rgba(93,214,255,.95), rgba(124,92,255,.95));
  color:#07101a;
}
.btn-primary:hover{filter:saturate(1.1) brightness(1.02)}
.btn-ghost{
  background:transparent;
}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute; inset:0;
  background-image:url("img/loja-01.jpg");
  background-size:cover; /* mostra a bancada inteira (sem zoom/corte) */
  background-position:center top;
  background-repeat:no-repeat;
  background-color: #0b0f14;
  filter:saturate(1.05) contrast(1.05);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,15,20,.55), rgba(11,15,20,.88) 55%, rgba(11,15,20,1)),
    radial-gradient(600px 380px at 20% 30%, rgba(93,214,255,.20), transparent 60%),
    radial-gradient(600px 380px at 80% 20%, rgba(124,92,255,.18), transparent 60%);
}
.hero-inner{
  position:relative;
  padding:58px 0 44px;
}
.pill{
  display:inline-block;
  font-weight:700;
  color:var(--text);
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  padding:8px 12px;
  border-radius:999px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height:1.06;
  letter-spacing:-.5px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  max-width:62ch;
}
.hero .lead{color: rgba(255,255,255,.84); font-size:19px;}
@media (min-width: 900px){
  .hero .lead{font-size:20px;}
}

.hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.hero-note{
  margin-top:18px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(16,24,36,.55);
  padding:14px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  max-width: 80ch;
}

.section{padding:56px 0}
.section-alt{background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00))}
.section-head{display:flex; flex-direction:column; gap:6px; margin-bottom:18px}
.section-head h2{margin:0; font-size:28px}
.section-head p{margin:0; color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(16,24,36,.75);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.45}

.callout{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  border:1px solid rgba(93,214,255,.22);
  background: linear-gradient(135deg, rgba(93,214,255,.10), rgba(124,92,255,.08));
  padding:16px;
  border-radius: var(--radius);
}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.gallery-item{
  margin:0;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.gallery-item img{
  width:100%; height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 4/5;
  transition: transform .18s ease;
}
.gallery-item:hover img{transform: scale(1.03)}

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.panel{
  background: rgba(16,24,36,.75);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 10px}
.big{font-size:22px; margin:0 0 10px}
.btn-row{display:flex; gap:10px; flex-wrap:wrap}
.divider{height:1px; background:var(--line); margin:16px 0}
.link{display:inline-block; color: var(--brand); font-weight:700; margin-top:6px}
.link:hover{text-decoration:underline}
.table-wrap{overflow:auto; border-radius:14px; border:1px solid var(--line)}
.hours{width:100%; border-collapse:collapse}
.hours td{padding:10px 12px; border-bottom:1px solid var(--line); color:var(--muted)}
.hours tr:last-child td{border-bottom:none}
.hours td:first-child{color:var(--text); width:38%}

details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  background: rgba(255,255,255,.03);
  margin-bottom:10px;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{color:var(--muted); margin:8px 0 0; line-height:1.45}

.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.55}
.small{font-size:13px}
.muted{color:var(--muted)}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  background: rgba(11,15,20,.72);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer-links{display:flex; gap:14px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}

.floating-wa{
  position:fixed;
  right:16px; bottom:16px;
  width:56px; height:56px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(93,214,255,.35);
  background: linear-gradient(135deg, rgba(93,214,255,.95), rgba(124,92,255,.95));
  color:#07101a;
  font-weight:900;
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
}
.floating-wa span{font-size:12px}

@media (max-width: 920px){
  .grid{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .contact-grid{grid-template-columns: 1fr}
}
@media (max-width: 640px){
  .nav{display:none}
  .nav-toggle{display:inline-block}
  .btn-small{display:none}
  .grid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
}

.nav-open .nav{
  display:flex;
  position:absolute;
  right:16px;
  top:64px;
  flex-direction:column;
  gap:6px;
  padding:10px;
  width:min(220px, 80vw);
  background: rgba(11,15,20,.92);
  border:1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}


/* Ajustes solicitados (logo + melhor leitura no banner) */
.brand-logo{
  height:40px;
  width:auto;
  display:block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

.hero-content{
  background: rgba(6,10,16,.62);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  max-width: 720px;
}

.hero h1, .hero p{
  text-shadow: 0 10px 25px rgba(0,0,0,.55);
}

/* Em telas grandes, dá um respiro maior */
@media (min-width: 900px){
  .hero-content{ padding: 22px 22px; }
  .brand-logo{ height:44px; }
}
