*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:#000;
  color:#fff;
}

.topbar{
  padding:14px 16px;
  font-size:18px;
  font-weight:700;
  background:#000;
  border-bottom:1px solid #111;
}

.section-title{
  margin:16px;
  font-size:16px;
  font-weight:700;
}

.launcher-lojas{
  padding:10px 8px 24px;
}

.search{
  width:calc(100% - 32px);
  margin:0 16px 10px;
  padding:10px 12px;
  border-radius:10px;
  border:none;
  outline:none;
  background:#1c1c1c;
  color:#fff;
  font-size:24px;
}

.curadoria{
  display:block;
  margin:0 16px 16px;
  font-size:13px;
  color:#9adfff;
  text-decoration:none;
  opacity:.9;
}

.launcher-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  row-gap:18px;
  column-gap:6px;
  padding:10px 6px 0;
}

.launcher-item{
  text-align:center;
  text-decoration:none;
  color:#fff;
  font-size:11px;
}

.launcher-item img{
  width:84px;
  height:84px;
  object-fit:cover;
  background:#1c1c1c;
  border-radius:16px;
  margin:0 auto;
  display:block;
}

.launcher-item span{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-top:6px;
  max-width:84px;
  margin-left:auto;
  margin-right:auto;
  opacity:.92;
}

@media (max-width:360px){
  .launcher-grid{ grid-template-columns:repeat(4,1fr); }
}

.footer {
  margin-top: 40px;
  padding: 20px 16px 60px;
  font-size: 12px;
  color: #a0a0a0;
  text-align: center;
}

.footer-brand {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.7;
}

#backToTop {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.5);
  z-index: 999;
}
.footer-info {
  margin-top: 40px;
  padding: 12px 16px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

.hero-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  scroll-snap-type: x mandatory;
}

.hero-scroll::-webkit-scrollbar {
  display: none;
}

.hero-card {
  flex: 0 0 auto;
  width: min(88vw, 360px);
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

