@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --bg-main:#030303;
  --bg-soft:#080808;
  --bg-card:#0e0e10;
  --bg-header:rgba(3,3,3,.88);
  --primary:#ff6a00;
  --primary-2:#ffb000;
  --white:#fff;
  --muted:#a3a3ad;
  --muted-2:#6f6f78;
  --border:rgba(255,255,255,.08);
  --font-main:'Inter',sans-serif;
  --font-title:'Space Grotesk',sans-serif;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  font-size:16px;
  width:100%;
}

body{
  width:100%;
  min-height:100vh;
  background:
    radial-gradient(circle at 15% 10%,rgba(255,106,0,.14),transparent 28%),
    linear-gradient(180deg,#020202 0%,#050505 60%,#010101 100%);
  color:#fff;
  font-family:var(--font-main);
  overflow-x:hidden;
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
select,
textarea{
  font-family:inherit;
}

button{
  cursor:pointer;
  border:none;
}

.container{
  width:min(1180px,92%);
  margin:0 auto;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  height:82px;
  background:var(--bg-header);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}

header .container{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* Compatível com logo antiga em texto e logo nova em imagem */
.logo,
.logo-img{
  display:flex;
  align-items:center;
  flex-shrink:0;
  max-width:180px;
  font-family:var(--font-title);
  font-weight:900;
  font-style:italic;
  font-size:1.2rem;
  letter-spacing:-.5px;
  color:#fff;
  white-space:nowrap;
}

.logo span{
  color:var(--primary);
}

.logo img,
.logo-img img{
  width:auto !important;
  height:34px !important;
  max-width:180px !important;
  object-fit:contain;
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex:1;
}

.nav-links a{
  font-size:.74rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:var(--muted);
  position:relative;
  white-space:nowrap;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--primary);
}

.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.action-btn,
.mobile-toggle{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:#fff;
  position:relative;
}

.mobile-toggle{
  display:none;
  font-size:1.1rem;
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  width:18px;
  height:18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--primary);
  color:#fff;
  font-size:.65rem;
  font-weight:900;
}

/* MAIN */

main{
  padding-top:82px;
  width:100%;
}

/* HERO HOME */

.hero{
  min-height:620px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
  padding:80px 0 50px;
  width:100%;
}

.hero-content h1{
  font-family:var(--font-title);
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.92;
  letter-spacing:-3.5px;
  text-transform:uppercase;
  font-weight:900;
  font-style:italic;
  margin-bottom:24px;
  max-width:620px;
}

.text-gradient{
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.eyebrow{
  display:inline-flex;
  color:var(--primary);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:12px;
}

.hero-content p{
  color:var(--muted);
  font-size:1rem;
  max-width:520px;
  line-height:1.7;
  margin-bottom:30px;
}

.hero-btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  min-height:52px;
  padding:0 26px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  text-transform:uppercase;
  transition:.3s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),#ff8c00);
  color:#fff;
  box-shadow:0 18px 40px rgba(255,106,0,.22);
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-secondary{
  border:1px solid rgba(255,106,0,.4);
  color:var(--primary);
  background:rgba(255,106,0,.05);
}

.hero-img{
  max-width:520px;
  margin-left:auto;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}

.hero-img img{
  width:100%;
  height:340px;
  object-fit:cover;
  transition:transform .5s ease;
  border-radius:24px;
}

.hero-img:hover img{
  transform:scale(1.04);
}

/* SECTION */

.section-spacer{
  padding:70px 0;
}

.section-title{
  font-family:var(--font-title);
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:.95;
  letter-spacing:-2px;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-desc{
  color:var(--muted);
  max-width:720px;
  font-size:1rem;
  line-height:1.7;
}

.section-head-premium{
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:34px;
}

.section-head-premium h2{
  font-size:clamp(2rem,4vw,3.4rem);
  font-family:var(--font-title);
  font-weight:900;
}

.section-link{
  color:var(--primary);
  font-weight:900;
  font-size:.8rem;
}

/* PRODUCTS */

.responsive-grid,
.premium-product-grid,
.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.product-card{
  position:relative;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  overflow:hidden;
  transition:.35s ease;
  min-height:auto;
}

.product-card:hover{
  transform:translateY(-10px);
  border-color:rgba(255,106,0,.35);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 0 40px rgba(255,106,0,.12);
}

.card-image-wrap{
  height:250px;
  overflow:hidden;
  margin-bottom:20px;
  border-radius:14px;
  background:#0b0b0b;
}

.card-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.product-card:hover .card-img{
  transform:scale(1.08);
}

.badge-offer{
  position:absolute;
  top:16px;
  left:16px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  font-size:.62rem;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  z-index:5;
}

.card-meta{
  color:var(--primary);
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:8px;
}

.product-name{
  font-size:1rem;
  line-height:1.3;
  font-weight:900;
  margin-bottom:12px;
}

.card-desc{
  color:var(--muted);
  font-size:.84rem;
  line-height:1.45;
  margin-bottom:14px;
  min-height:46px;
}

.price-row{
  display:flex;
  flex-direction:column;
  margin-bottom:16px;
}

.current-price{
  color:var(--primary);
  font-size:1.4rem;
  font-weight:900;
}

.old-price{
  color:var(--muted-2);
  text-decoration:line-through;
  font-size:.85rem;
}

.price-row small{
  color:var(--muted-2);
  font-size:.74rem;
  margin-top:4px;
}

.card-btns{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.btn-buy{
  min-height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),#ff8a00);
  color:#fff;
  font-size:.72rem;
  font-weight:900;
}

.btn-details{
  min-height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:.72rem;
  font-weight:900;
}

/* SHOP */

.shop-hero{
  position:relative;
  overflow:hidden;
  padding:90px 0 50px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:#050505;
}

.shop-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.72) 40%,
    rgba(0,0,0,.35) 70%,
    rgba(0,0,0,.92) 100%),

    url("../img/hero-banner2.jpg") center center / cover no-repeat;

  opacity:.45;
}

.shop-hero .container{
  position:relative;
  z-index:2;
}

.shop-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  align-items:start;
  padding-bottom:80px;
}

.shop-sidebar{
  position:sticky;
  top:104px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.filter-card,
.shop-toolbar{
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.28);
}

.filter-card h3{
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.shop-search,
.shop-sort{
  width:100%;
  height:52px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#fff;
  padding:0 18px;
  outline:none;
  font-size:.95rem;
  transition:.3s;
}

.shop-search:focus,
.shop-sort:focus{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 4px rgba(255,106,0,.08);
  background:rgba(255,255,255,.05);
}

.filter-btn{
  width:100%;
  padding:12px 14px;
  margin-bottom:8px;
  border-radius:13px;
  background:rgba(255,255,255,.025);
  border:1px solid transparent;
  color:var(--muted);
  font-weight:900;
  text-align:left;
}

.filter-btn:hover,
.filter-btn.active{
  color:#fff;
  border-color:rgba(255,106,0,.45);
  background:rgba(255,106,0,.12);
}

.trust-box p{
  color:var(--muted);
  font-size:.88rem;
  margin:8px 0 14px;
}

.trust-box a{
  color:var(--primary);
  font-weight:900;
}

.shop-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}

.shop-toolbar h2{
  font-size:1.3rem;
}

.shop-toolbar p{
  color:var(--muted);
  font-size:.9rem;
}

/* TRADE */

.trade-banner-premium{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:34px;
  padding:40px;
  border-radius:20px;
  background:
    radial-gradient(circle at 20% 10%,rgba(255,106,0,.22),transparent 36%),
    linear-gradient(135deg,#321304,#170903 60%,#070707);
  border:1px solid rgba(255,106,0,.35);
}

.trade-content h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;
  font-family:var(--font-title);
  font-weight:900;
  margin-bottom:18px;
}

.trade-content p{
  color:var(--muted);
  margin-bottom:24px;
}

.trade-image-box{
  overflow:hidden;
  border-radius:16px;
}

.trade-image-box img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* TRUST */

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-strip div{
  padding:22px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
}

.trust-strip strong{
  display:block;
  margin-bottom:6px;
}

.trust-strip span{
  color:var(--muted);
}

/* MODAL / CART */

.modal-overlay{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:flex-end;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
  padding:18px;
}

.modal-overlay.active{
  display:flex;
}

.modal-content,
.cart-panel{
  width:min(430px,100%);
  max-height:calc(100vh - 36px);
  background:#0d0d0f;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  overflow:auto;
}

.cart-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:22px;
}

.cart-close{
  background:none;
  color:#fff;
  font-size:1.4rem;
}

.cart-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.whatsapp-btn{
  width:100%;
  background:#25d366!important;
}

.continue-btn{
  width:100%;
  margin-top:12px;
  color:var(--muted);
  background:none;
}

/* FOOTER */

footer{
  margin-top:70px;
  padding:60px 0 30px;
  border-top:1px solid rgba(255,255,255,.06);
  background:#010101;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
}

.footer-title{
  color:var(--primary);
  font-size:.75rem;
  font-weight:900;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:1.3px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:var(--muted);
}

.footer-links a:hover{
  color:#fff;
}

.copyright{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.05);
  text-align:center;
  color:var(--muted-2);
  font-size:.72rem;
}

/* RESPONSIVO */

@media(max-width:920px){

  header{
    height:auto;
    min-height:74px;
  }

  header .container{
    min-height:74px;
    padding:14px 0;
    flex-wrap:wrap;
  }

  .mobile-toggle{
    display:block;
  }

  .nav-links{
    order:3;
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    width:100%;
    padding:14px 0;
    border-top:1px solid var(--border);
  }

  main{
    padding-top:74px;
  }

  .hero{
    grid-template-columns:1fr;
    gap:36px;
    padding:54px 0 28px;
  }

  .hero-content h1{
    font-size:clamp(2.8rem,12vw,4rem);
    letter-spacing:-2px;
  }

  .hero-img{
    max-width:100%;
  }

  .hero-img img{
    height:260px;
  }

  .responsive-grid,
  .premium-product-grid,
  .shop-grid,
  .trade-banner-premium,
  .trust-strip,
  .footer-grid,
  .shop-layout{
    grid-template-columns:1fr;
  }

  .shop-sidebar{
    position:relative;
    top:auto;
  }

  .shop-toolbar{
    flex-direction:column;
    align-items:stretch;
  }

  .card-image-wrap{
    height:240px;
  }

  .hero-btns{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }
}

/* ======================================================
   MS GAMES — HOME V23 LIMPA
   Mantém loja, blog, faq e admin sem remontar o projeto.
====================================================== */

/* Compatibilidade com logo em imagem */
.brand-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
  max-width:170px;
}

.brand-logo img,
.logo img,
.logo-img img{
  width:auto !important;
  height:34px !important;
  max-width:170px !important;
  object-fit:contain !important;
  display:block;
}

/* Compatibilidade com botão carrinho usado no HTML atual */
.icon-btn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:#fff;
  position:relative;
}

/* Home com imagem de fundo real em /img/hero-banner.jpg */
.home-hero.home-premium{
  position:relative;
  width:100%;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#030303;
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:110px 0 70px;
}

.home-hero.home-premium .home-bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.70) 34%, rgba(0,0,0,.36) 64%, rgba(0,0,0,.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, #050505 100%),
    url("../img/hero-banner.jpg") center center / cover no-repeat;
  opacity:1;
  filter:brightness(.88) saturate(1.08) contrast(1.08);
  transform:scale(1.025);
}

.home-hero.home-premium::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    radial-gradient(circle at 22% 42%, rgba(255,106,0,.22), transparent 32%),
    radial-gradient(circle at 75% 30%, rgba(255,106,0,.10), transparent 30%),
    linear-gradient(to top, #050505 0%, transparent 22%);
  pointer-events:none;
}

.home-content{
  position:relative;
  z-index:5;
  max-width:760px;
  margin-left:0;
  padding-left:10px;
}

.home-content h1{
  max-width:900px;
  font-family:var(--font-title);
  font-size:clamp(4.8rem,8vw,7.2rem);
  line-height:.92;
  letter-spacing:-3px;
}

.home-content h1 span{
  display:block;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.home-content p{
  max-width:560px;
  color:#c9c9d3;
  font-size:1.06rem;
  line-height:1.7;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary{
  min-height:56px;
  padding:0 30px;
  border-radius:16px;
  font-size:.82rem;
}

/* Seção de cards da home com menos espaço morto */
.section-block{
  padding:46px 0 !important;
}

.featured-section{
  margin-top:0 !important;
}

/* Card de avaliação com imagem de fundo em /img/hero-banner2.jpg */
.trade-card{
  min-height:385px !important;
  padding:52px !important;

  display:grid !important;
  grid-template-columns:1fr .9fr !important;

  align-items:center !important;
  gap:54px !important;

  border-radius:24px;
  border:1px solid rgba(255,106,0,.35);

  background:
    radial-gradient(circle at 18% 12%,rgba(255,106,0,.22),transparent 42%),
    linear-gradient(135deg,#321304,#130804 70%,#070707);
}

.trade-card h2{
  margin-bottom:22px !important;
}

.trade-card p{
  margin-bottom:28px !important;
  line-height:1.7 !important;
}

.trade-card .btn-primary{
  margin-top:6px !important;
}

.trade-media{
  display:block !important;
  min-height:240px !important;
  border-radius:20px !important;
  background-image:url("../img/hero-banner2.jpg") !important;
  background-size:cover !important;
  background-position:center !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.trust-strip{
  padding-top:12px !important;
  padding-bottom:42px !important;
}

footer{
  margin-top:30px !important;
}

/* Carrinho fechado por padrão e aberto só com .active */
.modal-overlay{
  display:none !important;
}

.modal-overlay.active{
  display:flex !important;
  position:fixed !important;
  inset:0 !important;
  z-index:9999 !important;
  background:rgba(0,0,0,.75) !important;
  justify-content:flex-end !important;
  align-items:stretch !important;
}

.cart-panel{
  width:min(460px,100%) !important;
  height:100vh !important;
  margin-left:auto !important;
  background:#0d0d0f !important;
  border-left:1px solid rgba(255,255,255,.12) !important;
  padding:28px !important;
  overflow:auto !important;
}

@media(max-width:920px){
  .home-hero.home-premium{
    min-height:640px;
    padding:100px 0 60px;
  }

  .home-content h1{
    font-size:clamp(3.1rem,13vw,4.7rem);
    letter-spacing:-2px;
  }

  .home-content p{
    font-size:1rem;
  }

  .trade-card{
    grid-template-columns:1fr !important;
    padding:28px !important;
  }

  .trade-media{
    min-height:220px !important;
  }
}

/* FIX HOME V25 — alinhar hero com container */
.home-hero.home-premium{
  width:100% !important;
  margin-left:0 !important;
  padding:110px 0 70px !important;
}

.home-hero.home-premium .home-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding-left:0 !important;
}

.home-content h1,
.home-content p,
.home-content .eyebrow,
.home-content .hero-actions{
  max-width:680px !important;
}

.home-content h1{
  font-size:clamp(4rem,6.8vw,6.5rem) !important;
  line-height:.9 !important;
  letter-spacing:-3px !important;
}

/* =======================================================
   MS GAMES — CARD PREMIUM V1
======================================================= */

#featured-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

#featured-grid .product-card,
.featured-grid .product-card {
  width: 100%;
  max-width: none;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(180deg, #151515 0%, #0b0b0b 100%);
  border: 1px solid rgba(255,255,255,.06);
  transition: .35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,119,0,.35);
  box-shadow:
    0 20px 45px rgba(0,0,0,.65),
    0 0 25px rgba(255,119,0,.08);
}

/* imagem */

.product-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  margin-bottom: 18px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

/* glow */

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
  pointer-events: none;
}

/* selo */

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: linear-gradient(135deg,#ff6a00,#ff9500);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: .5px;
  box-shadow: 0 10px 25px rgba(255,119,0,.35);
}

/* categoria */

.product-category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 8px;
  letter-spacing: .8px;
}

/* titulo */

.product-title {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

/* descrição */

.product-description,
.product-subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #a1a1a1;
  margin-bottom: 18px;
}

/* preços */

.old-price {
  color: #666;
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  #featured-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 220px;
  }
}

.product-price{
  font-size:42px;
  font-weight:900;
  color:#ff7a00;
  line-height:1;
  margin-bottom:8px;
}

.installments{
  font-size:12px;
  color:#7f7f7f;
  margin-bottom:24px;
}

/* botões */

.product-actions{
  display:flex;
  gap:12px;
}

.buy-btn{
  flex:1;
  height:52px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#ff6a00,#ff9500);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.buy-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(255,119,0,.25);
}

.details-btn{
  flex:1;
  height:52px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#151515;
  color:#d5d5d5;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.details-btn:hover{
  border-color:rgba(255,119,0,.35);
  color:#fff;
}

/* FIX CARDS V29 — botões alinhados e premium */

.product-card{
  display:flex !important;
  flex-direction:column !important;
}

.product-card-image{
  flex-shrink:0 !important;
}

.product-description{
  min-height:58px !important;
}

.price-row{
  margin-top:auto !important;
}

.product-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
  margin-top:24px !important;
}

.buy-btn,
.details-btn{
  height:54px !important;
  min-height:54px !important;
  border-radius:16px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  font-size:.78rem !important;
  font-weight:900 !important;
  line-height:1 !important;
}

.buy-btn{
  background:linear-gradient(135deg,#ff6a00,#ff9500) !important;
  color:#fff !important;
  box-shadow:0 14px 30px rgba(255,106,0,.22) !important;
}

.details-btn{
  border:1px solid rgba(255,255,255,.12) !important;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015)) !important;
  color:#fff !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03) !important;
}

.details-btn:hover{
  border-color:rgba(255,106,0,.5) !important;
  color:#ff8a00 !important;
  box-shadow:0 0 24px rgba(255,106,0,.12) !important;
}

/* V30 — cards mais premium e respirando */

.product-card{
  min-height:690px !important;
  padding:18px !important;
}

.product-title{
  font-size:2rem !important;
  line-height:1.02 !important;
  margin-bottom:14px !important;
}

.product-description{
  min-height:70px !important;
  line-height:1.7 !important;
  font-size:.95rem !important;
  color:rgba(255,255,255,.72) !important;
}

/* PREÇO MENOR E MAIS PREMIUM */

.current-price,
.product-price{
  font-size:2.7rem !important;
  line-height:1 !important;
  letter-spacing:-1px !important;
  margin-top:6px !important;
  margin-bottom:10px !important;
  display:block !important;
}

/* preço antigo */

.old-price{
  font-size:1rem !important;
  opacity:.45 !important;
}

/* parcela */

.installments{
  font-size:.78rem !important;
  opacity:.65 !important;
  letter-spacing:.3px !important;
}

/* espaçamento inferior */

.product-actions{
  margin-top:30px !important;
}

/* leve profundidade */

.product-card:hover{
  transform:translateY(-6px) !important;
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,106,0,.12) !important;
}

/* V31 — reduzir valor e altura visual dos cards */

.product-card .price-row .product-price.current-price,
.product-card .price-row .current-price,
.product-card .product-price{
  font-size:28px !important;
  line-height:1.05 !important;
  letter-spacing:-0.5px !important;
  margin:4px 0 6px !important;
}

.product-card .old-price{
  font-size:13px !important;
  margin-bottom:2px !important;
}

.product-card .installments{
  font-size:11px !important;
  opacity:.6 !important;
}

.product-card .product-description,
.product-card .card-desc{
  min-height:52px !important;
  margin-bottom:12px !important;
}

.product-card .price-row{
  margin-bottom:12px !important;
}

.product-card .product-actions{
  margin-top:18px !important;
}

.product-card{
  min-height:640px !important;
}

/* ESTOQUE V32 — sidebar premium + grid 3 colunas */

.shop-layout{
  display:grid !important;
  grid-template-columns:280px 1fr !important;
  gap:34px !important;
  align-items:start !important;
}

.shop-sidebar{
  position:sticky !important;
  top:110px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
}

.filter-card{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018)) !important;
  border:1px solid rgba(255,255,255,.09) !important;
  border-radius:22px !important;
  padding:20px !important;
  box-shadow:0 22px 55px rgba(0,0,0,.35) !important;
}

.filter-card h3{
  color:#fff !important;
  font-size:.78rem !important;
  text-transform:uppercase !important;
  letter-spacing:1px !important;
  margin-bottom:14px !important;
}

.filter-btn{
  width:100% !important;
  height:44px !important;
  border-radius:14px !important;
  margin-bottom:9px !important;
  padding:0 14px !important;
  background:rgba(255,255,255,.035) !important;
  border:1px solid transparent !important;
  color:rgba(255,255,255,.68) !important;
  font-weight:900 !important;
  text-align:left !important;
}

.filter-btn.active,
.filter-btn:hover{
  color:#fff !important;
  border-color:rgba(255,106,0,.55) !important;
  background:rgba(255,106,0,.13) !important;
}

.shop-content .shop-grid,
#shop-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:26px !important;
}

.shop-toolbar{
  margin-bottom:28px !important;
  border-radius:24px !important;
}

.shop-search,
.shop-sort{
  height:52px !important;
  border-radius:16px !important;
  background:rgba(255,255,255,.035) !important;
  border:1px solid rgba(255,255,255,.09) !important;
}

@media(max-width:980px){
  .shop-layout{
    grid-template-columns:1fr !important;
  }

  .shop-sidebar{
    position:relative !important;
    top:auto !important;
  }

  .shop-content .shop-grid,
  #shop-grid{
    grid-template-columns:1fr !important;
  }
}

/* ===== CARD MAIS COMPACTO ===== */

.product-card{
  min-height:auto;
  padding:18px;
  border-radius:26px;
  background:linear-gradient(180deg,#111,#090909);
  border:1px solid rgba(255,255,255,.06);
}

/* ===== IMAGEM ===== */

.product-image{
  height:240px;
  border-radius:18px;
  overflow:hidden;
}

/* ===== TAGS ===== */

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 14px;
  border-radius:12px;

  font-size:.72rem;
  font-weight:800;
  letter-spacing:.4px;

  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    0 0 18px rgba(255,106,0,.18);
}

/* ===== CORES DAS TAGS ===== */

.badge-new{
  background:linear-gradient(135deg,#ff7a00,#ff9500);
  color:#fff;
}

.badge-used{
  background:linear-gradient(135deg,#00a86b,#00c27c);
  color:#fff;
}

.badge-offer{
  background:linear-gradient(135deg,#ff3d3d,#ff6b00);
  color:#fff;
}

/* ===== TÍTULO ===== */

.product-title{
  font-size:2rem;
  line-height:1.02;
  margin-bottom:12px;
}

/* ===== PREÇO MAIS PREMIUM ===== */

.product-price{
  font-size:2.6rem;
  line-height:1;
  margin-top:10px;
}

/* ===== BOTÕES MAIS FINOS ===== */

.product-actions{
  gap:12px;
  margin-top:22px;
}

.product-actions .btn-primary,
.product-actions .btn-secondary{
  height:52px;
  border-radius:16px;
  font-size:.92rem;
  font-weight:700;
}

/* largura menor */

.product-actions .btn-primary{
  flex:0 0 42%;
}

.product-actions .btn-secondary{
  flex:1;
}

/* botão escuro premium */

.product-actions .btn-secondary{
  background:
    linear-gradient(180deg,#161616,#0c0c0c);

  border:1px solid rgba(255,255,255,.08);

  color:#fff;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 10px 30px rgba(0,0,0,.35);

  transition:.25s ease;
}

.product-actions .btn-secondary:hover{
  border-color:rgba(255,106,0,.35);

  transform:translateY(-2px);

  box-shadow:
    0 0 20px rgba(255,106,0,.12),
    0 14px 35px rgba(0,0,0,.45);
}

/* V35 — compactar cards + etiquetas e botões premium reais */

#shop-grid .product-card{
  min-height:620px !important;
  padding:16px !important;
}

#shop-grid .product-card-image{
  height:260px !important;
  margin-bottom:16px !important;
}

#shop-grid .product-badge{
  top:12px !important;
  left:12px !important;
  padding:5px 10px !important;
  border-radius:8px !important;
  font-size:10px !important;
  line-height:1 !important;
  letter-spacing:.3px !important;
  box-shadow:0 8px 18px rgba(255,106,0,.22) !important;
}

#shop-grid .product-title{
  font-size:28px !important;
  line-height:1.02 !important;
  margin-bottom:12px !important;
}

#shop-grid .product-description{
  min-height:60px !important;
  font-size:14px !important;
  line-height:1.55 !important;
  margin-bottom:12px !important;
}

#shop-grid .product-price{
  font-size:30px !important;
  line-height:1 !important;
  margin:4px 0 6px !important;
}

#shop-grid .old-price{
  font-size:13px !important;
  margin-bottom:2px !important;
}

#shop-grid .installments{
  font-size:11px !important;
}

#shop-grid .product-actions{
  margin-top:18px !important;
  gap:10px !important;
  grid-template-columns:.85fr 1fr !important;
}

#shop-grid .buy-btn,
#shop-grid .details-btn{
  height:46px !important;
  min-height:46px !important;
  border-radius:13px !important;
  font-size:12px !important;
  font-weight:900 !important;
}

#shop-grid .details-btn{
  border:1px solid rgba(255,255,255,.16) !important;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015)) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05) !important;
}

/* V36 — cards estoque mais elegantes e compactos */

#shop-grid .product-card{
  min-height:570px !important;
  padding:16px !important;
  border-radius:22px !important;
}

#shop-grid .product-card-image{
  height:230px !important;
  margin-bottom:14px !important;
  border-radius:16px !important;
}

#shop-grid .product-category{
  font-size:10px !important;
  letter-spacing:.7px !important;
  margin-bottom:8px !important;
}

#shop-grid .product-title{
  font-size:22px !important;
  line-height:1.08 !important;
  margin-bottom:10px !important;
  letter-spacing:-.4px !important;
}

#shop-grid .product-description{
  min-height:50px !important;
  font-size:13px !important;
  line-height:1.55 !important;
  margin-bottom:10px !important;
  color:rgba(255,255,255,.68) !important;
}

#shop-grid .old-price{
  font-size:12px !important;
  opacity:.38 !important;
}

#shop-grid .product-price{
  font-size:25px !important;
  letter-spacing:-.3px !important;
  margin:3px 0 4px !important;
}

#shop-grid .installments{
  font-size:10px !important;
  opacity:.55 !important;
}

#shop-grid .product-actions{
  margin-top:16px !important;
  grid-template-columns:1fr 1fr !important;
  gap:9px !important;
}

#shop-grid .buy-btn,
#shop-grid .details-btn{
  height:42px !important;
  min-height:42px !important;
  border-radius:12px !important;
  font-size:11px !important;
}

#shop-grid .details-btn{
  background:rgba(255,255,255,.025) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:rgba(255,255,255,.72) !important;
}

#shop-grid .details-btn:hover{
  color:#fff !important;
  border-color:rgba(255,106,0,.45) !important;
}

/* V38 — descrição clean premium dos cards */

#shop-grid .product-description{
  display:none !important;
}

#shop-grid .product-subtitle{
  display:block !important;
  font-size:11px !important;
  line-height:1.35 !important;
  font-weight:500 !important;
  color:rgba(255,255,255,.46) !important;
  margin:4px 0 14px !important;
  letter-spacing:.2px !important;
}

#shop-grid .product-title{
  font-size:21px !important;
  line-height:1.05 !important;
  margin-bottom:4px !important;
}

/* V40 — estoque compacto estilo premium referência */

#shop-grid{
  gap:22px !important;
}

#shop-grid .product-card{
  min-height:500px !important;
  padding:14px !important;
  border-radius:20px !important;
}

#shop-grid .product-card-image{
  height:205px !important;
  margin-bottom:13px !important;
  border-radius:15px !important;
}

#shop-grid .product-badge{
  top:10px !important;
  left:10px !important;
  padding:6px 10px !important;
  border-radius:7px !important;
  font-size:10px !important;
  text-transform:uppercase !important;
  box-shadow:0 8px 18px rgba(255,106,0,.22) !important;
}

#shop-grid .product-card:has(.product-category){
  overflow:hidden !important;
}

#shop-grid .product-category{
  font-size:10px !important;
  line-height:1 !important;
  margin-bottom:9px !important;
  letter-spacing:1px !important;
}

#shop-grid .product-title{
  font-size:21px !important;
  line-height:1.08 !important;
  margin-bottom:6px !important;
}

#shop-grid .product-subtitle{
  font-size:12px !important;
  line-height:1.35 !important;
  color:rgba(255,255,255,.48) !important;
  margin-bottom:12px !important;
  font-weight:500 !important;
}

#shop-grid .old-price{
  font-size:12px !important;
  margin-bottom:2px !important;
}

#shop-grid .product-price{
  font-size:25px !important;
  margin:0 0 4px !important;
}

#shop-grid .installments{
  font-size:11px !important;
}

#shop-grid .product-actions{
  margin-top:14px !important;
  gap:10px !important;
}

#shop-grid .buy-btn,
#shop-grid .details-btn{
  height:40px !important;
  min-height:40px !important;
  border-radius:10px !important;
  font-size:11px !important;
}

/* cores de selo por tipo */
#shop-grid .product-card .product-badge{
  background:linear-gradient(135deg,#ff6a00,#ff9500) !important;
}

#shop-grid .product-card .product-badge{
  color:#fff !important;
}

/* V41 — selos premium e card menos poluído */

#shop-grid .product-badge{
  padding:5px 9px !important;
  border-radius:7px !important;
  font-size:9px !important;
  font-weight:900 !important;
  letter-spacing:.5px !important;
  text-transform:uppercase !important;
  box-shadow:0 8px 18px rgba(0,0,0,.28) !important;
}

#shop-grid .badge-new{
  background:linear-gradient(135deg,#ff7a00,#ff9b20) !important;
  color:#fff !important;
}

#shop-grid .badge-used{
  background:linear-gradient(135deg,#00a86b,#00c77b) !important;
  color:#fff !important;
}

#shop-grid .badge-offer{
  background:linear-gradient(135deg,#ff1744,#ff6a00) !important;
  color:#fff !important;
}

#shop-grid .product-category{
  font-size:9px !important;
  letter-spacing:1.2px !important;
  opacity:.9 !important;
}

#shop-grid .product-title{
  font-size:20px !important;
  margin-bottom:5px !important;
}

#shop-grid .product-subtitle{
  font-size:11px !important;
  color:rgba(255,255,255,.42) !important;
  margin-bottom:10px !important;
}

#shop-grid .product-price{
  font-size:22px !important;
  color:#ff7a00 !important;
}

#shop-grid .product-card{
  min-height:470px !important;
}

/* V42 — selos premium separados por tipo */

#shop-grid .product-badge{
  top:12px !important;
  left:12px !important;
  height:24px !important;
  padding:0 10px !important;
  border-radius:6px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:9px !important;
  font-weight:900 !important;
  letter-spacing:.7px !important;
  text-transform:uppercase !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    0 8px 18px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* NOVO — laranja premium */
#shop-grid .product-badge.badge-new{
  background:linear-gradient(135deg,#ff6a00 0%,#ff8a00 55%,#ffb000 100%) !important;
  color:#fff !important;
}

/* SEMINOVO — verde premium */
#shop-grid .product-badge.badge-used{
  background:linear-gradient(135deg,#009b67 0%,#00b875 55%,#19d68c 100%) !important;
  color:#fff !important;
}

/* OFERTA — vermelho premium */
#shop-grid .product-badge.badge-offer{
  background:linear-gradient(135deg,#ff102f 0%,#ff3048 52%,#ff6a00 100%) !important;
  color:#fff !important;
}

/* reduz o “laranjão” geral do card */
#shop-grid .product-category{
  color:rgba(255,122,0,.88) !important;
}

#shop-grid .product-price{
  color:#ff7a00 !important;
  text-shadow:none !important;
}

/* V43 — selos vivos e prioridade correta */

#shop-grid .product-badge{
  height:24px !important;
  padding:0 10px !important;
  border-radius:6px !important;
  font-size:9px !important;
  font-weight:900 !important;
  letter-spacing:.5px !important;
  text-transform:uppercase !important;
  box-shadow:none !important;
}

#shop-grid .badge-new{
  background:#ff7a00 !important;
  color:#fff !important;
}

#shop-grid .badge-used{
  background:#00b875 !important;
  color:#fff !important;
}

#shop-grid .badge-offer{
  background:#ff1635 !important;
  color:#fff !important;
}

/* V44 — página produto premium */

.product-page-premium{
  width:min(1180px,92%);
  margin:70px auto 100px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:46px;
  align-items:start;
}

.product-gallery{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.main-product-image{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg,#171717,#080808);
  border:1px solid rgba(255,255,255,.08);
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.main-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s ease;
}

.main-product-image:hover img{
  transform:scale(1.04);
}

.thumb-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.thumb-btn{
  height:120px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  background:#111;
  padding:10px;
  cursor:pointer;
  transition:.25s ease;
}

.thumb-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}

.thumb-btn.active,
.thumb-btn:hover{
  border-color:#ff7a00;
  box-shadow:0 0 22px rgba(255,106,0,.18);
}

.product-info-premium{
  padding-top:40px;
}

.product-info-premium h1{
  font-size:clamp(2.8rem,5vw,4.4rem);
  line-height:.95;
  letter-spacing:-2px;
  margin:18px 0 14px;
  color:#fff;
}

.product-version-detail{
  color:rgba(255,255,255,.55);
  font-size:1.1rem;
  margin-bottom:18px;
}

.product-detail-desc{
  color:rgba(255,255,255,.68);
  font-size:1rem;
  line-height:1.7;
  max-width:520px;
  margin-bottom:34px;
}

.detail-price-box{
  margin:30px 0;
}

.detail-price-box strong{
  display:block;
  font-size:3.2rem;
  color:#fff;
  letter-spacing:-1px;
}

.detail-price-box small{
  color:rgba(255,255,255,.5);
}

.detail-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:34px;
}

.detail-actions .btn-primary,
.btn-whatsapp-detail,
.btn-simular{
  height:56px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  text-transform:uppercase;
  text-decoration:none;
}

.btn-whatsapp-detail{
  background:#25D366;
  color:#07120b;
}

.btn-simular{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}

.detail-benefits{
  display:grid;
  gap:14px;
}

.detail-benefits div{
  padding:20px;
  border-radius:18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
}

.detail-benefits strong{
  display:block;
  color:#fff;
  margin-bottom:6px;
}

.detail-benefits span{
  color:rgba(255,255,255,.55);
}

@media(max-width:900px){
  .product-page-premium{
    grid-template-columns:1fr;
  }

  .main-product-image{
    min-height:380px;
  }

  .thumb-btn{
    height:86px;
  }
}

/* ===== GALERIA PREMIUM PRODUCT ===== */

.product-thumbs{
    display:flex;
    gap:16px;
    margin-top:18px;
    flex-wrap:wrap;
}

.product-thumb{
    width:120px;
    height:120px;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
    border:1px solid rgba(255,255,255,0.06);
    background:#0d0d0d;
    transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    opacity .28s ease;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
    transform .45s ease,
    filter .35s ease;
}

/* hover */

.product-thumb:hover{
    transform:translateY(-4px);
    border-color:rgba(255,140,0,.75);
    box-shadow:
    0 0 0 1px rgba(255,140,0,.35),
    0 10px 25px rgba(255,140,0,.12);
}

.product-thumb:hover img{
    transform:scale(1.08);
    filter:brightness(1.08);
}

/* ativa */

.product-thumb.active{
    border-color:#ff7a00;
    box-shadow:
    0 0 0 1px rgba(255,122,0,.45),
    0 0 24px rgba(255,122,0,.18);
}

/* imagem principal */

.product-main-image{
    overflow:hidden;
    border-radius:34px;
    position:relative;
}

.product-main-image img{
    transition:
    transform .5s ease,
    opacity .25s ease;
}

.product-main-image:hover img{
    transform:scale(1.03);
}

/* V45 — efeito premium nas miniaturas do produto */

.thumb-btn{
  position:relative !important;
  overflow:hidden !important;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease !important;
}

.thumb-btn:hover{
  transform:translateY(-5px) scale(1.02) !important;
  border-color:rgba(255,122,0,.75) !important;
  box-shadow:0 16px 32px rgba(255,106,0,.16) !important;
}

.thumb-btn img{
  transition:transform .45s ease, filter .35s ease !important;
}

.thumb-btn:hover img{
  transform:scale(1.09) !important;
  filter:brightness(1.12) contrast(1.05) !important;
}

.thumb-btn.active{
  border-color:#ff7a00 !important;
  box-shadow:0 0 0 1px rgba(255,122,0,.5), 0 0 26px rgba(255,122,0,.18) !important;
}

#main-product-photo{
  transition:opacity .18s ease, transform .45s ease !important;
}

#main-product-photo.is-changing{
  opacity:.18 !important;
  transform:scale(.985) !important;
}

.main-product-image:hover #main-product-photo{
  transform:scale(1.035) !important;
}

/* V46 — carrinho premium */

.modal-overlay.active{
  display:flex !important;
  justify-content:flex-end !important;
  align-items:stretch !important;
  backdrop-filter:blur(12px) !important;
  background:rgba(0,0,0,.72) !important;
}

.cart-panel{
  width:min(520px,94vw) !important;
  height:100vh !important;
  padding:34px !important;
  border-radius:0 !important;
  background:linear-gradient(180deg,#101010,#050505) !important;
  border-left:1px solid rgba(255,255,255,.08) !important;
  box-shadow:-30px 0 80px rgba(0,0,0,.65) !important;
}

.cart-head{
  margin-bottom:30px !important;
}

.cart-head h2{
  font-size:2rem !important;
  font-style:normal !important;
  letter-spacing:-1px !important;
}

.premium-cart-item{
  display:grid !important;
  grid-template-columns:92px 1fr auto !important;
  gap:18px !important;
  align-items:center !important;
  padding:18px !important;
  border-radius:20px !important;
  background:rgba(255,255,255,.045) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  margin-bottom:16px !important;
}

.cart-item-img{
  width:92px !important;
  height:92px !important;
  border-radius:14px !important;
  overflow:hidden !important;
  background:#111 !important;
}

.cart-item-img img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.cart-item-info strong{
  display:block !important;
  color:#fff !important;
  font-size:1rem !important;
  line-height:1.2 !important;
  margin-bottom:5px !important;
}

.cart-item-info span{
  display:block !important;
  color:#ff7a00 !important;
  font-size:.72rem !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
  margin-bottom:12px !important;
}

.cart-qty{
  display:inline-flex !important;
  align-items:center !important;
  gap:16px !important;
  height:36px !important;
  padding:0 12px !important;
  border-radius:10px !important;
  background:rgba(255,255,255,.055) !important;
  border:1px solid rgba(255,255,255,.08) !important;
}

.cart-qty button{
  color:#fff !important;
  opacity:.7 !important;
}

.cart-item-side{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  gap:28px !important;
}

.cart-item-side strong{
  color:#ff7a00 !important;
  font-size:1.15rem !important;
}

.cart-remove{
  opacity:.45 !important;
  transition:.2s ease !important;
}

.cart-remove:hover{
  opacity:1 !important;
  color:#ff3b3b !important;
}

.cart-footer{
  border-top:1px solid rgba(255,255,255,.08) !important;
  padding-top:24px !important;
}

.cart-total-row,
.cart-footer > div:first-child{
  display:flex !important;
  justify-content:space-between !important;
  align-items:end !important;
  margin-bottom:22px !important;
}

#cart-total-value{
  color:#ff7a00 !important;
  font-size:2rem !important;
  font-weight:900 !important;
}

.btn-whatsapp,
.whatsapp-btn{
  height:58px !important;
  border-radius:16px !important;
  background:#25D366 !important;
  color:#06140a !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

/* V47 — carrinho premium real */

.cart-panel{
  width:min(620px,96vw) !important;
  padding:42px !important;
  background:linear-gradient(180deg,#090909,#030303) !important;
  border-left:1px solid rgba(255,255,255,.08) !important;
}

.cart-head{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  margin-bottom:34px !important;
}

.cart-head h2{
  font-size:2.4rem !important;
  font-weight:900 !important;
  font-style:normal !important;
  letter-spacing:-1.5px !important;
}

.cart-close,
.cart-head button{
  width:42px !important;
  height:42px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#fff !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:18px !important;
}

.premium-cart-item{
  grid-template-columns:88px 1fr auto !important;
  padding:18px !important;
  border-radius:22px !important;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02)) !important;
  border:1px solid rgba(255,255,255,.1) !important;
}

.cart-item-img{
  width:88px !important;
  height:88px !important;
}

.cart-item-info strong{
  font-size:1.05rem !important;
}

.cart-item-info span{
  color:#ff7a00 !important;
  font-size:.7rem !important;
}

.cart-qty{
  height:34px !important;
  border-radius:10px !important;
}

.cart-item-side strong{
  font-size:1.1rem !important;
  color:#ff7a00 !important;
}

.cart-footer{
  margin-top:auto !important;
}

.cart-total-row span,
.cart-footer span{
  color:#fff !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

#cart-total-value{
  font-size:2.3rem !important;
  color:#ff7a00 !important;
}

.btn-whatsapp,
.whatsapp-btn{
  height:62px !important;
  border-radius:16px !important;
  background:linear-gradient(135deg,#22c55e,#29e071) !important;
  color:#04130a !important;
  box-shadow:0 18px 38px rgba(34,197,94,.25) !important;
}

.continue-btn{
  height:48px !important;
  margin-top:12px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.1) !important;
  background:rgba(255,255,255,.035) !important;
  color:#fff !important;
}

/* V48 — checkout premium central */

.cart-checkout-overlay.active{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:40px !important;
  background:rgba(0,0,0,.78) !important;
  backdrop-filter:blur(14px) !important;
}

.cart-checkout-shell{
  position:relative !important;
  width:min(1180px,94vw) !important;
  max-height:90vh !important;
  overflow:auto !important;
  display:grid !important;
  grid-template-columns:1.25fr .85fr !important;
  gap:36px !important;
  background:#080808 !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:28px !important;
  padding:44px !important;
  box-shadow:0 40px 100px rgba(0,0,0,.7) !important;
}

.cart-close-premium{
  position:absolute !important;
  top:22px !important;
  right:22px !important;
  width:38px !important;
  height:38px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#fff !important;
  font-size:16px !important;
}

.cart-title-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  margin-bottom:28px !important;
}

.cart-title-row h2{
  font-size:2.5rem !important;
  letter-spacing:-1px !important;
}

#cart-items-count{
  background:rgba(255,255,255,.07) !important;
  border-radius:999px !important;
  padding:9px 16px !important;
  color:rgba(255,255,255,.65) !important;
  font-weight:900 !important;
  font-size:.75rem !important;
  text-transform:uppercase !important;
}

.premium-cart-item{
  display:grid !important;
  grid-template-columns:88px 1fr auto !important;
  gap:20px !important;
  align-items:center !important;
  padding:20px !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.055) !important;
  border:1px solid rgba(255,255,255,.09) !important;
  margin-bottom:18px !important;
}

.cart-item-img{
  width:88px !important;
  height:88px !important;
  border-radius:12px !important;
  overflow:hidden !important;
}

.cart-item-img img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.cart-remove{
  width:32px !important;
  height:32px !important;
  border-radius:10px !important;
  background:rgba(255,255,255,.04) !important;
  color:rgba(255,255,255,.5) !important;
}

.trade-entry-box{
  margin-top:26px !important;
  padding:24px !important;
  border-radius:18px !important;
  background:rgba(255,106,0,.08) !important;
  border:1px solid rgba(255,106,0,.25) !important;
  display:flex !important;
  gap:18px !important;
  align-items:center !important;
}

.trade-entry-box strong{
  display:block !important;
  color:#fff !important;
  margin-bottom:4px !important;
}

.trade-entry-box span{
  color:rgba(255,255,255,.55) !important;
}

.trade-toggle-dot{
  width:42px !important;
  height:24px !important;
  border-radius:999px !important;
  background:#ff7a00 !important;
}

.checkout-card-premium{
  padding:34px !important;
  border-radius:24px !important;
  background:#050505 !important;
  border:1px solid rgba(255,255,255,.09) !important;
}

.checkout-card-premium h3{
  font-size:1.8rem !important;
  margin-bottom:28px !important;
}

.checkout-card-premium label{
  display:block !important;
  margin:18px 0 8px !important;
  color:rgba(255,255,255,.45) !important;
  font-size:.7rem !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:1.5px !important;
}

.checkout-card-premium input{
  width:100% !important;
  height:56px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.1) !important;
  background:rgba(255,255,255,.055) !important;
  color:#fff !important;
  padding:0 18px !important;
}

.checkout-line,
.checkout-total{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  margin-top:22px !important;
}

.checkout-line.orange strong,
.checkout-line.orange span{
  color:#ff7a00 !important;
}

.checkout-total{
  align-items:flex-end !important;
  margin-top:34px !important;
}

.checkout-total strong{
  font-size:2.6rem !important;
  color:#ff7a00 !important;
}

.checkout-total small{
  display:block !important;
  color:rgba(255,255,255,.38) !important;
  text-transform:uppercase !important;
  font-size:.65rem !important;
}

.btn-whatsapp-premium{
  width:100% !important;
  height:62px !important;
  margin-top:28px !important;
  border-radius:16px !important;
  background:#25D366 !important;
  color:#06140a !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

.checkout-badges{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:12px !important;
  margin-top:28px !important;
}

.checkout-badges div{
  height:62px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:rgba(255,255,255,.45) !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  font-size:.65rem !important;
}

@media(max-width:900px){
  .cart-checkout-shell{
    grid-template-columns:1fr !important;
    padding:28px !important;
  }
}

/* V52 — corrigir botões quantidade */
.cart-qty button{
  width:28px !important;
  height:28px !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.08) !important;
  color:#fff !important;
  font-size:18px !important;
  font-weight:900 !important;
  line-height:1 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.cart-qty button:hover{
  background:rgba(255,122,0,.22) !important;
  color:#ff7a00 !important;
}

/* V53 — formulário seminovo no carrinho */

.trade-switch input{
  display:none;
}

.trade-switch span{
  width:44px;
  height:24px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  display:block;
  position:relative;
  cursor:pointer;
}

.trade-switch span::after{
  content:"";
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  position:absolute;
  top:3px;
  left:4px;
  transition:.25s ease;
}

.trade-switch input:checked + span{
  background:#ff7a00;
}

.trade-switch input:checked + span::after{
  left:22px;
}

.trade-form-box{
  display:none;
  margin-top:16px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,106,0,.22);
  background:rgba(255,106,0,.06);
}

.trade-form-box.active{
  display:block;
}

.trade-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.trade-form-box select,
.trade-form-box textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:#111;
  color:#fff;
  padding:13px;
  outline:none;
}

.trade-form-box textarea{
  margin-top:12px;
  min-height:90px;
  resize:vertical;
}

.trade-upload{
  display:block;
  margin-top:12px;
  padding:14px;
  border-radius:12px;
  border:1px dashed rgba(255,122,0,.45);
  color:#ff7a00;
  font-weight:900;
  cursor:pointer;
}

.trade-upload input{
  display:none;
}

/* HERO SHOP AJUSTE TITULO */

.shop-hero-title{
  max-width: 980px;
  line-height: .92;
  letter-spacing: -3px;
}

.shop-hero-title span{
  display:block;
  background: linear-gradient(90deg,#ff7a00,#ffb300);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@media (max-width: 1100px){

  .shop-hero-title{
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: .95;
  }

}

/* V55 — restaura hero premium do estoque */

.shop-hero .section-title{
  max-width: 820px !important;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem) !important;
  line-height: .95 !important;
  letter-spacing: -2px !important;
  font-style: italic !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.shop-hero .section-title .text-gradient{
  background: linear-gradient(90deg,#ff6a00,#ffb000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.shop-hero .section-desc{
  max-width: 720px !important;
  margin-top: 22px !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}

@media(max-width:900px){
  .shop-hero .section-title{
    font-size: clamp(2.8rem, 12vw, 4.4rem) !important;
    letter-spacing: -2px !important;
  }
}

/* TITULOS PREMIUM MS GAMES */
.ms-title-premium {
  font-family: var(--font-display, inherit);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 0.96;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
  max-width: 920px;
}

.ms-title-premium span {
  color: var(--primary);
}

.ms-title-premium.small {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

/* AJUSTE FINAL — HOME COM MESMA PROPORÇÃO DO ESTOQUE */
.home-content .ms-title-premium {
  font-size: clamp(2.8rem, 5vw, 4.6rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -2px !important;
  max-width: 760px !important;
  font-weight: 900 !important;
  font-style: italic !important;
  text-transform: uppercase !important;
}

.home-content .ms-title-premium span {
  display: inline;
}

/* =========================
   INTERAÇÃO PREMIUM BOTÃO HERO
========================= */

.hero-actions .btn-secondary {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.hero-actions .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 0, 0.9);
  box-shadow:
    0 0 18px rgba(255, 136, 0, 0.28),
    0 0 42px rgba(255, 136, 0, 0.12);
  background: rgba(255, 136, 0, 0.06);
}

.hero-actions .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-actions .btn-secondary:hover::before {
  left: 140%;
}

/* =========================
   FOOTER PREMIUM MS GAMES
========================= */

.footer-premium {
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 111, 0, 0.08), transparent 32%),
    #050505;
  padding: 58px 0 0;
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 46px;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  max-width: 92px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand span {
  display: block;
  max-width: 360px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  font-size: 0.84rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.68rem;
letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.78;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
  opacity: 1;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.36);
  font-size: 0.75rem;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .footer-premium-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-premium {
    padding-top: 42px;
  }
}

/* =========================
   FOOTER PREMIUM REFINADO — MS GAMES
========================= */

.footer-premium {
  background: #030303 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 46px 0 0 !important;
}

.footer-premium-grid {
  display: grid !important;
  grid-template-columns: 1.3fr 0.7fr 1fr !important;
  gap: 54px !important;
  align-items: flex-start !important;
}

.footer-brand .footer-logo {
  max-width: 86px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}

.footer-brand p {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.footer-brand span {
  max-width: 340px !important;
  color: rgba(255,255,255,0.42) !important;
  font-size: 0.78rem !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.footer-col h4 {
  color: rgba(255,255,255,0.92) !important;
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
}

.footer-col a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  color: rgba(255,255,255,0.42) !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  margin-bottom: 13px !important;
  opacity: 1 !important;
  transition: color .25s ease, transform .25s ease;
}

.footer-col a:hover {
  color: #ff7a00 !important;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 42px !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.055) !important;
  color: rgba(255,255,255,0.30) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}

/* FOOTER PREMIUM FINAL — COMPACTO */
.footer-premium {
  background: #050505 !important;
  padding: 54px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
}

.footer-premium-grid {
  display: grid !important;
  grid-template-columns: 1.4fr .8fr 1fr !important;
  gap: 90px !important;
  align-items: flex-start !important;
}

.footer-brand .footer-logo {
  max-width: 96px !important;
  margin-bottom: 20px !important;
}

.footer-brand p {
  color: rgba(255,255,255,.82) !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  margin: 0 0 14px !important;
  max-width: 340px !important;
}

.footer-brand span {
  display: block !important;
  color: rgba(255,255,255,.42) !important;
  font-size: .78rem !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  max-width: 330px !important;
}

.footer-col h4 {
  color: #fff !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin: 0 0 24px !important;
}

.footer-col a {
  display: block !important;
  color: rgba(255,255,255,.42) !important;
  font-size: .76rem !important;
  font-weight: 400 !important;
  letter-spacing: .8px !important;
  text-transform: none !important;
  margin-bottom: 13px !important;
  line-height: 1.4 !important;
  transition: color .25s ease, transform .25s ease;
}

.footer-col a:hover {
  color: #ff7a00 !important;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 52px !important;
  padding: 20px 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(255,255,255,.055) !important;
  color: rgba(255,255,255,.30) !important;
  font-size: .68rem !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

@media (max-width: 768px) {
  .footer-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
}

/* =========================
   FOOTER PREMIUM FINAL
========================= */

.footer-premium {
  background: #040404;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-premium::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,119,0,.14), transparent 70%);
  pointer-events: none;
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .9fr;
  gap: 120px;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  max-width: 120px;
  margin-bottom: 28px;
}

.footer-brand p {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 40px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.footer-location i {
  color: #ff7a00;
}

.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: 5px;
  margin-bottom: 34px;
  position: relative;
}

.footer-col a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 260px;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  padding: 10px 0;
  transition: all .25s ease;
}

.footer-col a span {
  flex: 1;
}

.footer-col a i {
  color: #ff7a00;
  font-size: 1rem;
}

.footer-col a:hover {
  transform: translateX(6px);
  color: #ff7a00;
}

.footer-contact {
  justify-self: end;
}

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 26px 0;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .86rem;
  letter-spacing: 2px;
}

.footer-bottom span {
  color: #ff7a00;
}

@media (max-width: 768px) {

  .footer-premium-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-contact {
    justify-self: start;
  }

}

/* =========================
   REVIEWS PREMIUM
========================= */

.reviews-premium{
  padding:90px 0 70px;
}

.reviews-header{
  text-align:center;
  margin-bottom:54px;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.review-card{
  background:linear-gradient(180deg,#141414,#0a0a0a);
  border:1px solid rgba(255,255,255,.06);
  border-radius:22px;

  padding:34px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:320px;

  transition:.3s ease;
}

.review-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,106,0,.35);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.stars{
  color:#ff7a00;
  font-size:1.1rem;
  margin-bottom:22px;
  letter-spacing:3px;
}

.review-card p{
  color:rgba(255,255,255,.84);
  line-height:1.8;
  margin-bottom:30px;

  font-size:1rem;

  min-height:105px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:16px;
}

.avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(255,106,0,.18);
  border:1px solid rgba(255,106,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ff7a00;
  font-weight:800;
}

.review-user strong{
  display:block;
  color:#fff;
}

.review-user span{
  color:rgba(255,255,255,.42);
  font-size:.85rem;
}

/* =========================
   LOCATION PREMIUM
========================= */

.location-premium{
  padding:20px 0 90px;
}

.location-shell{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.location-info p{
  margin:26px 0 30px;
  line-height:1.8;
  color:rgba(255,255,255,.78);
  max-width:520px;
}

.map-premium{
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  min-height:360px;
}

.map-premium iframe{
  width:100%;
  height:100%;
  min-height:360px;
  border:none;
  filter:grayscale(1) invert(.95) contrast(1.1);
}

@media(max-width:980px){

  .reviews-grid{
    grid-template-columns:1fr;
  }

  .location-shell{
    grid-template-columns:1fr;
  }

}

/* =========================
   MS PLAY — PORTAL PREMIUM
========================= */

.msplay-hero{
  position:relative;
  padding:120px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,106,0,.14), transparent 34%),
    linear-gradient(180deg,#050505,#020202);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.msplay-hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:stretch;
}

.msplay-hero-copy p{
  max-width:620px;
  color:rgba(255,255,255,.72);
  font-size:1.05rem;
  line-height:1.8;
  margin:24px 0 28px;
}

.msplay-categories{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.msplay-categories span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.28);
  color:#ff7a00;
  background:rgba(255,106,0,.07);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.msplay-featured{
  min-height:380px;
  border-radius:28px;
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
    linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.88)),
    url("../img/products/hero-banner2.jpg") center/cover no-repeat;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.msplay-featured h2{
  font-size:clamp(2rem,3.6vw,3.3rem);
  line-height:.95;
  letter-spacing:-1.5px;
  text-transform:uppercase;
  font-style:italic;
  margin-bottom:16px;
}

.msplay-featured p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
  margin-bottom:22px;
}

.msplay-featured a{
  color:#ff7a00;
  font-weight:900;
  text-transform:uppercase;
  font-size:.78rem;
}

.msplay-section{
  padding:76px 0 90px;
}

.msplay-section-head{
  margin-bottom:38px;
}

.msplay-grid{
  gap:28px !important;
}

.msplay-grid article,
.msplay-grid .blog-card{
  background:linear-gradient(180deg,#141414,#080808) !important;
  border:1px solid rgba(255,255,255,.07) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  padding:0 !important;
  transition:.3s ease !important;
}

.msplay-grid article:hover,
.msplay-grid .blog-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,106,0,.35) !important;
  box-shadow:0 25px 70px rgba(0,0,0,.5);
}

.msplay-grid img{
  width:100% !important;
  height:240px !important;
  object-fit:cover !important;
  margin-bottom:0 !important;
}

.msplay-grid article > div,
.msplay-grid .blog-card > div{
  padding:24px !important;
}

.msplay-grid h3{
  font-size:1.45rem !important;
  line-height:1.15 !important;
  margin:12px 0 !important;
}

.msplay-grid p{
  color:rgba(255,255,255,.62) !important;
  line-height:1.6 !important;
}

.msplay-grid a,
.msplay-grid button{
  margin-top:22px !important;
  min-height:44px !important;
  border-radius:12px !important;
  padding:0 16px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(255,106,0,.25) !important;
  color:#ff7a00 !important;
  background:rgba(255,106,0,.06) !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  font-size:.7rem !important;
}

@media(max-width:900px){
  .msplay-hero-inner{
    grid-template-columns:1fr;
  }

  .msplay-featured{
    min-height:320px;
  }
}

/* =========================
   POST INDIVIDUAL PREMIUM
========================= */

.post-hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,106,0,.13), transparent 30%),
    linear-gradient(180deg,#050505,#020202);
}

.back-post {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  transition: .25s ease;
}

.back-post:hover {
  color: #ff7a00;
  transform: translateX(-4px);
}

.post-page-premium {
  max-width: 940px;
  margin: 0 auto;
}

.post-lead {
  max-width: 780px;
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 24px 0 34px;
}

.post-cover {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 46px;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
}

.post-body p {
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.post-body h2 {
  color: #fff;
  font-size: 2rem;
  margin: 42px 0 18px;
}

.post-cta {
  margin: 70px auto 0;
  padding: 36px;
  max-width: 760px;
  border-radius: 24px;
  border: 1px solid rgba(255,106,0,.28);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,106,0,.20), transparent 36%),
    linear-gradient(135deg,#160804,#050505);
}

.post-cta h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.post-cta p {
  color: rgba(255,255,255,.66);
  margin-bottom: 24px;
}

/* MS PLAY — FILTROS PREMIUM */
.msplay-categories.blog-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 34px !important;
}

.msplay-categories.blog-tags .blog-filter {
  appearance: none !important;
  border: 1px solid rgba(255,106,0,.35) !important;
  background: rgba(255,106,0,.07) !important;
  color: #ff7a00 !important;
  padding: 13px 20px !important;
  border-radius: 999px !important;
  font-size: .76rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  cursor: pointer !important;
  transition: .28s ease !important;
}

.msplay-categories.blog-tags .blog-filter:hover {
  transform: translateY(-3px) !important;
  background: rgba(255,106,0,.16) !important;
  border-color: #ff7a00 !important;
  box-shadow: 0 0 24px rgba(255,106,0,.18) !important;
}

.msplay-categories.blog-tags .blog-filter.active {
  background: linear-gradient(135deg,#ff6a00,#ff9500) !important;
  color: #050505 !important;
  border-color: transparent !important;
  box-shadow: 0 14px 34px rgba(255,106,0,.25) !important;
}

/* =========================
   AJUSTE FINO HERO MS PLAY
========================= */

.msplay-hero-inner{
  grid-template-columns: 1.15fr .72fr !important;
  gap: 54px !important;
  align-items: center !important;
}

.msplay-featured{
  max-width: 520px !important;

  padding: 42px !important;

  border-radius: 34px !important;

  background:
    radial-gradient(circle at top left,
    rgba(255,106,0,.08),
    transparent 34%),

    linear-gradient(
      180deg,
      rgba(12,12,12,.96),
      rgba(5,5,5,.98)
    ) !important;

  border: 1px solid rgba(255,255,255,.06) !important;

  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.02);
}

.msplay-featured h2{
  font-size: clamp(2.4rem,4vw,4rem) !important;
  line-height: .95 !important;
  letter-spacing: -.04em !important;
}

.msplay-featured p{
  margin-top: 22px !important;

  font-size: 1rem !important;

  line-height: 1.7 !important;

  color: rgba(255,255,255,.72) !important;
}

/* BOTÕES EM LINHA */
.msplay-categories.blog-tags{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:12px !important;
  margin-top:42px !important;
}

/* BOTÕES MAIS COMPACTOS */
.msplay-categories.blog-tags .blog-filter{
  padding:12px 18px !important;

  font-size:.72rem !important;

  white-space:nowrap !important;

  letter-spacing:.06em !important;
}

/* RESPONSIVO */
@media(max-width:1150px){

  .msplay-hero-inner{
    grid-template-columns:1fr !important;
  }

  .msplay-featured{
    max-width:100% !important;
  }

  .msplay-categories.blog-tags{
    flex-wrap:wrap !important;
  }

}

/* =========================
   MS PLAY FEATURED FIX
========================= */

.msplay-hero-inner{
  align-items:start !important;
}

.msplay-featured{
  max-width:460px !important;

  padding:34px !important;

  min-height:auto !important;

  margin-top:18px !important;

  align-self:start !important;
}

.msplay-featured h2{
  font-size:clamp(2.7rem,3vw,3.8rem) !important;

  line-height:.92 !important;

  letter-spacing:-.05em !important;

  margin-bottom:22px !important;
}

.msplay-featured p{
  font-size:.98rem !important;

  line-height:1.7 !important;

  margin-bottom:22px !important;

  max-width:95% !important;
}

.msplay-featured a{
  font-size:.82rem !important;

  letter-spacing:.08em !important;
}

/* =========================
   FAQ PREMIUM V2
========================= */

.faq-premium-list{
  max-width:920px;
  margin:55px auto 0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  position:relative;

  background:
    linear-gradient(
      180deg,
      rgba(14,14,16,.96),
      rgba(8,8,10,.98)
    );

  border:1px solid rgba(255,106,0,.08);

  border-radius:22px;

  overflow:hidden;

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.faq-item::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,106,0,.10),
      transparent 42%
    );

  opacity:0;

  transition:opacity .35s ease;

  pointer-events:none;
}

.faq-item:hover{
  transform:translateY(-2px);

  border-color:rgba(255,106,0,.22);

  box-shadow:
    0 0 30px rgba(255,106,0,.08);
}

.faq-item:hover::before{
  opacity:1;
}

.faq-question{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:none;
  border:none;

  padding:26px 30px;

  cursor:pointer;

  color:#fff;

  font-size:1rem;
  font-weight:700;

  letter-spacing:-0.02em;

  text-align:left;
}

.faq-question span{
  max-width:85%;
}

.faq-question i{
  width:34px;
  height:34px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(255,106,0,.10);

  color:#ff6a00;

  font-style:normal;

  font-size:1.15rem;
  font-weight:700;

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);

  background:#ff6a00;
  color:#000;
}

.faq-answer{
  max-height:0;

  overflow:hidden;

  transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .35s ease;

  opacity:.6;
}

.faq-answer p{
  padding:
    0 30px 28px;

  color:rgba(255,255,255,.70);

  line-height:1.8;

  font-size:.96rem;

  max-width:760px;
}

/* =========================
   HERO BACKGROUND — MS PLAY
========================= */

.msplay-hero {
  position: relative !important;
  overflow: hidden !important;
  background: #050505 !important;
}

.msplay-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.42) 72%, rgba(0,0,0,.90) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, #050505 100%),
    url("../img/hero-banner3.jpg") center center / cover no-repeat !important;

  opacity: .48 !important;
  filter: brightness(.9) saturate(1.08) contrast(1.08) !important;
}

.msplay-hero > .container {
  position: relative !important;
  z-index: 2 !important;
}

/* =========================
   HERO BACKGROUND — FAQ
========================= */

.faq-hero-bg {
  position: relative !important;
  overflow: hidden !important;
  padding: 120px 0 90px !important;
  background: #050505 !important;
}

.faq-hero-bg::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 45%, rgba(0,0,0,.50) 75%, rgba(0,0,0,.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, #050505 100%),
    url("../img/hero-banner4.jpg") center center / cover no-repeat !important;

  opacity: .42 !important;
  filter: brightness(.85) saturate(1.08) contrast(1.08) !important;
}

.faq-hero-bg > .container {
  position: relative !important;
  z-index: 2 !important;
}

.faq-item.active .faq-answer{
  max-height:220px;
  opacity:1;
}

/* FAQ HERO — CORREÇÃO FINAL */
.faq-hero-bg{
  position:relative !important;
  overflow:hidden !important;
  padding:95px 0 80px !important;
  background:#050505 !important;
}

.faq-hero-bg::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.52) 46%, rgba(0,0,0,.70) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, #050505 100%),
    url("../img/hero-banner4.jpg") center center / cover no-repeat !important;
  opacity:.82 !important;
  filter:brightness(.95) saturate(1.12) contrast(1.05) !important;
}

.faq-hero-bg > .container{
  position:relative !important;
  z-index:2 !important;
}

.faq-premium-list{
  max-width:860px !important;
  margin:42px auto 0 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;
}

.faq-item.active .faq-answer{
  max-height:260px !important;
  opacity:1 !important;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg) !important;
  background:#ff6a00 !important;
  color:#000 !important;
}

/* =========================
   MS PLAY HERO — FUNDO PREMIUM FINAL
========================= */

.msplay-hero{
  position:relative !important;
  overflow:hidden !important;
  padding:120px 0 90px !important;
  background:#050505 !important;
  border-bottom:1px solid rgba(255,255,255,.06) !important;
}

.msplay-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.82) 0%,
      rgba(0,0,0,.54) 42%,
      rgba(0,0,0,.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.04) 0%,
      #050505 100%
    ),
    url("../img/hero-banner5.jpg") center center / cover no-repeat !important;

  opacity:.92 !important;
  filter:brightness(.92) saturate(1.08) contrast(1.05) !important;
}

.msplay-hero-inner{
  position:relative !important;
  z-index:2 !important;
  display:grid !important;
  grid-template-columns:1.1fr .8fr !important;
  gap:60px !important;
  align-items:start !important;
}

.msplay-hero-copy,
.msplay-featured{
  position:relative !important;
  z-index:3 !important;
}

.product-card-image,
.card-image-wrap{
  height:260px !important;
  overflow:hidden !important;
  border-radius:22px !important;
}

.card-img,
.product-image{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* =======================================================
   HOME GRID — AJUSTE FINAL
======================================================= */

#featured-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
}

#featured-grid .product-card {
  width: 100%;
  max-width: none;
}

/* responsivo */

@media (max-width: 980px) {
  #featured-grid {
    grid-template-columns: 1fr !important;
  }
}

.site-lead-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(12px);
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.site-lead-box{
  width:100%;
  max-width:440px;
  background:#090909;
  border:1px solid rgba(255,122,0,.22);
  border-radius:28px;
  padding:32px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.site-lead-box h2{
  color:#fff;
  font-size:32px;
  margin:12px 0 8px;
}

.site-lead-box p{
  color:rgba(255,255,255,.65);
  margin-bottom:20px;
}

.site-lead-box input{
  width:100%;
  height:54px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#111;
  color:#fff;
  padding:0 16px;
  margin-bottom:12px;
  outline:none;
}

.site-lead-close{
  position:absolute;
  top:16px;
  right:16px;
  width:36px;
  height:36px;
  border:0;
  border-radius:12px;
  background:#141414;
  color:#fff;
  cursor:pointer;
}

.site-logo{
  width:132px;
  height:auto;
  object-fit:contain;
  display:block;
}

.brand-logo{
  display:flex;
  align-items:center;
}

.map-route-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  color:#ff6a00;
  font-weight:800;
  text-decoration:none;
  transition:0.3s ease;
}

.map-route-btn:hover{
  opacity:0.8;
  transform:translateX(4px);
}

.editorial-featured-card{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:28px;

  padding:28px;
  border-radius:32px;

  background:
    linear-gradient(
      180deg,
      rgba(18,18,18,.98),
      rgba(10,10,10,.98)
    );

  border:1px solid rgba(255,255,255,.05);

  overflow:hidden;
}

.editorial-featured-image{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:360px;
}

.editorial-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:0.5s ease;
}

.editorial-featured-card:hover
.editorial-featured-image img{
  transform:scale(1.04);
}

.editorial-featured-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.editorial-badge{
  display:inline-flex;
  width:max-content;

  padding:8px 14px;
  border-radius:999px;

  background:rgba(255,106,0,.12);

  color:#ff6a00;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;

  margin-bottom:18px;
}

.editorial-featured-content h2{
  font-size:42px;
  line-height:1.05;
  margin-bottom:18px;
}

.editorial-featured-content p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
  margin-bottom:22px;
}

.editorial-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;

  margin-bottom:26px;
}

.editorial-meta span{
  padding:8px 12px;
  border-radius:999px;

  background:rgba(255,255,255,.05);

  font-size:12px;
  color:rgba(255,255,255,.7);
}

.editorial-featured-content a{
  width:max-content;

  padding:14px 22px;
  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      #ff6a00,
      #ff8533
    );

  color:#fff;
  font-weight:800;
  text-decoration:none;

  transition:.25s ease;
}

.editorial-featured-content a:hover{
  transform:translateY(-2px);
}

@media(max-width:980px){

  .editorial-featured-card{
    grid-template-columns:1fr;
  }

  .editorial-featured-content h2{
    font-size:32px;
  }

}

.editorial-featured-card{
  grid-template-columns:1fr !important;
  position:relative;
}

.editorial-featured-image{
  position:absolute;
  inset:0;
  min-height:auto;
  opacity:.22;
  border-radius:32px;
}

.editorial-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.editorial-featured-content{
  position:relative;
  z-index:2;
  max-width:520px;
  padding:18px;
}

.msplay-grid .blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(8,8,8,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transition: .35s ease;
}

.msplay-grid .blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 28px 80px rgba(255,106,0,.12);
}

.msplay-grid .post-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: .5s ease;
}

.msplay-grid .blog-card:hover .post-img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 26px;
}

.blog-category {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,106,0,.12);
  color: #ff6a00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.blog-card-content h3 {
  font-size: 26px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: #fff;
}

.blog-card-content p {
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin-bottom: 22px;
}

.blog-card-content .btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255,106,0,.12);
  border: 1px solid rgba(255,106,0,.25);
  color: #ff6a00;
  font-weight: 900;
  text-decoration: none;
  transition: .25s ease;
}

.blog-card-content .btn-details:hover {
  background: #ff6a00;
  color: #fff;
}

.community-hero{
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.72),
      rgba(0,0,0,.88)
    ),
    url('../img/community-bg.jpg');

  background-size:cover;
  background-position:center;
}

.community-highlights{
  padding:90px 0;
}

.community-head{
  margin-bottom:36px;
}

.community-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
}

.community-card{
  position:relative;
  overflow:hidden;

  min-height:320px;

  border-radius:28px;

  background:#111;

  border:1px solid rgba(255,255,255,.06);

  transition:.35s ease;
}

.community-card.large{
  grid-row:span 2;
  min-height:664px;
}

.community-card img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:.5s ease;
}

.community-card::after{
  content:'';

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08),
      rgba(0,0,0,.82)
    );
}

.community-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,106,0,.35);
}

.community-card:hover img{
  transform:scale(1.06);
}

.community-card-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;

  z-index:2;

  padding:28px;
}

.community-tag{
  display:inline-flex;

  margin-bottom:16px;

  padding:8px 12px;

  border-radius:999px;

  background:rgba(255,106,0,.14);

  color:#ff6a00;

  font-size:11px;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.community-card-content h3{
  font-size:28px;
  line-height:1.08;

  color:#fff;

  margin-bottom:12px;
}

.community-card-content p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

@media(max-width:980px){

  .community-grid{
    grid-template-columns:1fr;
  }

  .community-card.large{
    min-height:420px;
  }

  .community-card{
    min-height:280px;
  }

}