/* G2 Pneus Ofertas */
.g2pneus-hero{
  --g2-red: #c10b0b;
  --g2-red2: #f02d2d;
  --g2-yellow: #ffb400;
  --g2-yellow2: #ffd34d;
  --dark: #1a1a1a;
  background: radial-gradient(1200px 500px at 50% -10%, #ff6a00 0%, #b60000 45%, #8c0000 100%);
  padding: clamp(16px, 2vw, 24px);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.g2pneus-logo{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin: 8px auto 18px;
  justify-content:center;
  text-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.g2pneus-logo .g2{
  font-weight: 900;
  font-size: clamp(40px, 8vw, 84px);
  background: linear-gradient(180deg, #ff6a00, #cf0000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.4));
}
.g2pneus-logo .pneus{
  font-weight: 900;
  font-size: clamp(38px, 7vw, 76px);
  padding: 6px 14px;
  border-radius: 14px;
  color: #2a2a2a;
  background: linear-gradient(180deg, #ffd34d, #ffb400);
  box-shadow: 0 10px 24px rgba(0,0,0,.35), inset 0 2px 0 rgba(255,255,255,.5);
}
.g2pneus-logo .sub{
  font-size: clamp(10px, 2vw, 16px);
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: .08em;
}
.g2pneus-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px, 2vw, 18px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px){
 .g2pneus-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
 .g2pneus-grid{ grid-template-columns: 1fr; }
}
.g2pneus-card{
  background: linear-gradient(180deg, var(--g2-yellow2), var(--g2-yellow));
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 0 rgba(255,255,255,.25) inset, 0 24px 40px rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.35);
  position: relative;
}
.g2pneus-card-title{
  font-weight: 900;
  color: #7b0000;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.g2pneus-card-img{
  height: 180px;
  border-radius: 14px;
  background: radial-gradient(80% 80% at 50% 50%, rgba(0,0,0,.7), rgba(0,0,0,.92));
  box-shadow: inset 0 0 20px rgba(0,0,0,.55);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
/* pseudo "pneu" shine */
.g2pneus-card-img::before{
  content:"";
  position:absolute; inset:12px;
  border-radius: 12px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%);
}
.g2pneus-card-price{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.g2pneus-card-price .price{
  background: linear-gradient(180deg, #ffd86b, #ffc21f);
  border-radius: 12px;
  padding: 10px 14px;
  color:#7b0000;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 22px);
  box-shadow: 0 12px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.g2pneus-card-price .price strong{
  font-size: 1.25em;
}
.g2pneus-card-price .tag{
  color:#7b0000;
  opacity:.9;
  font-weight:700;
}
.g2pneus-card-price .tag b{font-weight:900}

.g2pneus-footer{
  margin: 18px auto 0;
  text-align:center;
  opacity:.9;
  font-weight:600;
}

/* Floating action buttons */
.g2pneus-fab{
  position: fixed;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  line-height: 1;
  z-index: 9999;
}
.g2pneus-fab.wa{
  background: #22c55e;
  bottom: 18px;
}
.g2pneus-fab.pin{
  background: #ef4444;
  bottom: 72px;
}
.g2pneus-fab span{display:inline-block; transform: translateY(1px);}
.g2pneus-fab svg{display:block}
