/* =========================
   G1 STORE - HOME (layout do print)
   ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #e9e9f2;
  background: #06060b;
  overflow-x: hidden;
}

/* BG */
.bg { position: fixed; inset: 0; z-index: -1; }
.bg-grid {
  position: absolute; inset: 0;
  opacity: .25;
  background:
    linear-gradient(to right, rgba(155,88,255,.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(155,88,255,.22) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translateZ(0);
}
.bg-glow{
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 70% 45%, rgba(154, 63, 255, .50), transparent 55%),
    radial-gradient(circle at 25% 60%, rgba(80, 160, 255, .18), transparent 55%);
  filter: blur(30px);
}
.bg-vignette{
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0), rgba(0,0,0,.65) 70%);
}

/* TOPBAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: rgba(10, 10, 16, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 190px;
}
.brand-logo{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-verify{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  background: rgba(130, 90, 255, .35);
  border: 1px solid rgba(180, 150, 255, .35);
}

.search{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.search-ico{ opacity:.85; }
.search input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #f0f0ff;
  font-size: 14px;
}

.actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.btn{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #e9e9f2;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}
.btn.ghost:hover{ background: rgba(255,255,255,.10); }
.btn.primary{
  background: linear-gradient(90deg, rgba(124, 62, 255, .95), rgba(184, 90, 255, .95));
  border: 1px solid rgba(200,140,255,.35);
}
.badge{
  margin-left: 8px;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
}

/* CONTAINER */
.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 22px 60px;
}

/* HERO */
.hero{ padding-top: 10px; }

.hero-card{
  position: relative;
  border-radius: 26px;
  padding: 54px 52px;
  min-height: 420px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.hero-card::before{
  content:"";
  position:absolute; inset:-20%;
  background:
    radial-gradient(circle at 70% 50%, rgba(166, 82, 255, .45), transparent 55%),
    radial-gradient(circle at 15% 60%, rgba(90, 150, 255, .12), transparent 55%);
  filter: blur(30px);
  pointer-events:none;
}

.hero-left{
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-title{
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.hero-subtitle{
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1px;
  color: #a855ff;
  margin-bottom: 18px;
}
.hero-text{
  color: rgba(235,235,255,.72);
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.hero-buttons{
  display:flex;
  gap: 14px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.10);
}
.pill-primary{
  background: linear-gradient(90deg, rgba(124, 62, 255, .95), rgba(184, 90, 255, .95));
  color: #fff;
  border: 1px solid rgba(200,140,255,.35);
}
.pill-ghost{
  background: rgba(255,255,255,.06);
  color: #e9e9f2;
}
.pill-ghost:hover{ background: rgba(255,255,255,.10); }

/* HERO RIGHT IMAGE */
.hero-right{
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 44vw);
  z-index: 1;
  display:flex;
  justify-content:center;
  align-items:center;
  pointer-events:none;
}
.hero-img{
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.6));
  opacity: .98;
}

/* FLOAT BUTTONS RIGHT */
.hero-float{
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.float-btn{
  text-decoration:none;
  font-weight: 800;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 62, 255, .95), rgba(184, 90, 255, .95));
  border: 1px solid rgba(200,140,255,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 170px;
}

/* REVIEWS */
.reviews{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  margin-top: 18px;
  opacity: .95;
}
.stars{
  color: #b85aff;
  letter-spacing: 2px;
}
.review-text{
  color: rgba(235,235,255,.72);
  font-size: 14px;
}
.trust{
  color: rgba(130, 255, 190, .9);
  font-weight: 800;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .topbar{ flex-wrap: wrap; }
  .brand{ min-width: 160px; }
  .actions{ width: 100%; justify-content: flex-end; }
  .hero-card{ padding: 40px 24px; }
  .hero-title, .hero-subtitle{ font-size: 46px; }
  .hero-right{ position: relative; right: auto; top: auto; transform: none; width: 100%; margin-top: 18px; }
  .hero-float{ display:none; }
}
@media (max-width: 520px){
  .hero-title, .hero-subtitle{ font-size: 38px; }
  .hero-buttons{ flex-direction: column; align-items: flex-start; }
}