/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

p {
  color: #ccc;
}

/* =========================
   HEADER
========================= */
header {
  background: #000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00ff66;
}

header img {
  height: 60px;
}

nav a {
  color: #00ff66;
  margin-left: 25px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  text-shadow: 0 0 10px #00ff66;
}

/* =========================

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #00ff66;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 20px #00ff66;
  transform: scale(1.05);
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 80px 40px;
  text-align: center;
}

section h2 {
  font-size: 2.8rem;
  color: #00ff66;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #00ff66;
}

/* =========================
   CARDS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #0a0a0a;
  border: 2px solid #00ff66;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ff66;
}

.card h3 {
  color: #00ff66;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
}

/* =========================
   PRICES
========================= */
.prices {
  font-size: 1.6rem;
  color: #00ff66;
  font-weight: bold;
  margin-top: 15px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #000;
  padding: 40px;
  text-align: center;
  border-top: 2px solid #00ff66;
}

footer p {
  color: #777;
  font-size: 0.9rem;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00ff66;
  color: #000;
  padding: 15px 22px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 20px #00ff66;
  z-index: 999;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 20px;
  }
}

.hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: flex-end;   /* ⬅️ joga conteúdo para baixo */
  justify-content: center;

  padding: 100px 40px;      /* espaço inferior confortável */
  text-align: center;
}


/* Overlay escuro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Conteúdo acima do overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}


/* TÍTULO */
.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000;
}

/* SUBTÍTULO */
.hero-subtitle {
  font-size: 1.4rem;
  margin: 20px 0 30px;
  color: #f1f1f1;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000;
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1s ease-in-out;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 40px;
  text-align: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Conteúdo */
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 20px 0 30px;
  color: #f1f1f1;
  text-shadow: 0 0 10px #000;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

/* =========================
   SOBRE COM IMAGEM
========================= */
.sobre-section {
  background: #000;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
}

.sobre-texto h2 {
  text-align: left;
}

.sobre-texto p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sobre-container {
    grid-template-columns: 1fr;
  }

  .sobre-texto h2 {
    text-align: center;
  }

  .sobre-texto {
    text-align: center;
  }
}


/* =========================
   PLANOS
========================= */
.planos-section {
  background: linear-gradient(to bottom, #000, #050505);
}

.planos-descricao {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #ccc;
  font-size: 1.05rem;
}

.planos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.plano-card {
  background: #0a0a0a;
  border: 2px solid #222;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.plano-card:hover {
  transform: translateY(-10px);
  border-color: #00ff66;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.25);
}

/* DESTAQUE */
.plano-destaque {
  border-color: #00ff66;
  transform: scale(1.05);
}

.plano-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff66;
  color: #000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

/* TEXTO */
.plano-card h3 {
  color: #00ff66;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.plano-preco {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
  color: #fff;
}

.plano-texto {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 25px;
}

/* BENEFÍCIOS */
.plano-beneficios {
  list-style: none;
  margin-bottom: 30px;
}

.plano-beneficios li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* BOTÃO */
.plano-btn {
  display: inline-block;
  width: 100%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .plano-destaque {
    transform: none;
  }
}

/* =========================
   GALERIA (CARROSSEL)
========================= */
.galeria-section{
  padding: 70px 20px;
  text-align: center;
  background: #000;
}

.galeria-desc{
  margin: 0 auto 18px auto;
  max-width: 720px;
  opacity: .9;
  color: #ccc;
}

.galeria-wrapper{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 46px;
}

.galeria-track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 8px;
  border-radius: 18px;
}

.galeria-track::-webkit-scrollbar{
  height: 10px;
}
.galeria-track::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: rgba(0, 255, 102, .22);
}

/* ✅ CARD 100% PREENCHIDO + FOTO INTEIRA POR CIMA */
.galeria-item{
  flex: 0 0 auto;
  width: 360px;
  height: 240px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0,255,102,.18);
  background: #0a0a0a;
  position: relative;
}

/* Fundo: mesma imagem preenchendo o card (pode cortar) + blur */
.galeria-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.12);
  opacity: .55;
}

/* Camada escura para dar contraste */
.galeria-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* Foto principal: inteira, sem cortar */
.galeria-item img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ✅ PREENCHE TODO O CARD */
  object-position: center;    /* foco no centro */
  display: block;
  padding: 0;                 /* ✅ remove “folga” que deixava menor */
  transform: none !important;
  transition: none;
}


/* remove qualquer zoom */
.galeria-item:hover img{
  transform: none;
}

.galeria-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0,255,102,.25);
  background: rgba(0,0,0,.55);
  color: #00ff66;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.galeria-btn:hover{
  box-shadow: 0 0 18px rgba(0,255,102,.25);
  background: rgba(0,0,0,.75);
}

.galeria-btn.prev{ left: 0; }
.galeria-btn.next{ right: 0; }

/* =========================
   MOBILE UPGRADE (geral)
   Cole no FINAL do style.css
========================= */

/* melhora tamanhos e espaçamentos no celular */
@media (max-width: 768px) {
  header {
    padding: 16px 16px;
    gap: 10px;
  }

  header img {
    height: 52px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 6px;
  }

  nav a {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(0,255,102,.18);
    border-radius: 999px;
    font-size: 14px;
  }

  section h2 {
    font-size: 2.0rem;
    margin-bottom: 22px;
  }

  .btn {
    padding: 14px 22px;
    border-radius: 999px;
  }

  .whatsapp {
    padding: 12px 16px;
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }
}

/* =========================
   GALERIA - MOBILE INCRÍVEL
========================= */
@media (max-width: 768px) {
  .galeria-section {
    padding: 55px 14px;
  }

  .galeria-wrapper {
    max-width: 100%;
    padding: 0; /* remove espaço lateral */
  }

  /* swipe no dedo */
  .galeria-btn {
    display: none !important;
  }

  /* deixa o carrossel mais "natural" no mobile */
  .galeria-track {
    gap: 12px;
    padding: 10px 6px 14px;
    scroll-padding-left: 12px;
  }

  /* CARD quase tela inteira */
  .galeria-item {
    width: 88vw;          /* ocupa quase toda a tela */
    max-width: 420px;     /* trava em telas maiores */
    height: 54vw;         /* proporção boa */
    max-height: 250px;
    border-radius: 18px;
  }

  /* no mobile, NADA de padding no img (pra não ficar menor) */
  .galeria-item img {
    padding: 0 !important;
  }
}

/* mobile pequeno */
@media (max-width: 420px) {
  .galeria-item {
    width: 92vw;
    height: 58vw;
    max-height: 240px;
  }
}
/* =========================
   JOGOS (CARROSSEL)
========================= */
.jogos-section{
  background: #000;
}

.jogos-desc{
  margin: 0 auto 18px auto;
  max-width: 720px;
  opacity: .9;
  color: #ccc;
}

.jogos-wrapper{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 46px;
}

.jogos-track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 8px;
  border-radius: 18px;
}

.jogos-track::-webkit-scrollbar{
  height: 10px;
}
.jogos-track::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: rgba(0, 255, 102, .22);
}

/* card do jogo */
.jogo-item{
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(0,255,102,.18);
  background: #0a0a0a;
  transition: .2s ease;

  display: flex;              /* ✅ divide em imagem + texto */
  flex-direction: column;     /* ✅ texto fica EMBAIXO */
}


.jogo-item:hover{
  border-color: rgba(0,255,102,.45);
  box-shadow: 0 0 18px rgba(0,255,102,.18);
}

/* área de mídia (imagem) com fundo blur */
.jogo-media{
  position: relative;
  height: 190px;              /* ✅ SOMENTE espaço da imagem */
  width: 100%;
  overflow: hidden;
  background: #070707;
  flex: 0 0 190px;            /* ✅ trava a altura, texto não invade */
}


/* fundo: preenche (pode cortar) + blur */
.jogo-media::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.12);
  opacity: .55;
}

/* camada escura */
.jogo-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}

/* imagem principal: proporcional e sem estourar */
.jogo-media{
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background: #070707;
}

.jogo-media::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.12);
  opacity: .45;
}

.jogo-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
}

.jogo-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;    /* ✅ não corta */
  object-position: center;
  padding: 10px;          /* ✅ “diminui” um pouco */
  display: block;
}




/* sem imagem */
.jogo-sem-img{
  display: grid;
  place-items: center;
  color: #777;
}


.jogo-info{
  padding: 16px 16px 18px;
  text-align: left;
  background: #0a0a0a;        /* ✅ não “transparece” na imagem */
  position: relative;
  z-index: 5;
}


.jogo-info h3{
  color: #00ff66;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.jogo-info p{
  color: #ccc;
  font-size: .95rem;
  line-height: 1.4;
}

/* botões */
.jogos-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0,255,102,.25);
  background: rgba(0,0,0,.55);
  color: #00ff66;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.jogos-btn:hover{
  box-shadow: 0 0 18px rgba(0,255,102,.25);
  background: rgba(0,0,0,.75);
}

.jogos-btn.prev{ left: 0; }
.jogos-btn.next{ right: 0; }

/* mobile incrível (swipe) */
@media (max-width: 768px){
  .jogos-section{
    padding: 55px 14px;
  }
  .jogos-wrapper{
    max-width: 100%;
    padding: 0;
  }
  .jogos-btn{
    display: none !important;
  }
  .jogos-track{
    gap: 12px;
    padding: 10px 6px 14px;
    scroll-padding-left: 12px;
  }
  .jogo-item{
    width: 88vw;
    max-width: 420px;
  }
}

@media (max-width: 420px){
  .jogo-item{
    width: 92vw;
  }
}

/* =========================
   HERO CAROUSEL - MOBILE RESPONSIVO
   Cole no FINAL do style.css
========================= */
@media (max-width: 768px) {

  /* deixa o carrossel mais "mobile friendly" */
  .hero-carousel{
    height: 75vh;                 /* menos alto no celular */
    min-height: 520px;            /* garante boa área */
  }

  .hero-slide{
    padding: 18px 14px 26px;      /* menos padding lateral */
    align-items: flex-end;        /* mantém conteúdo embaixo */
    text-align: center;
  }

  .hero-slide .hero-content{
    max-width: 92vw;
  }

  .hero-title{
    font-size: 2.2rem;            /* título menor */
    line-height: 1.08;
  }

  .hero-subtitle{
    font-size: 1.05rem;
    margin: 12px 0 18px;
    line-height: 1.35;
  }

  .hero-slide .btn{
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
  }
}

/* mobile pequeno (iPhone SE etc) */
@media (max-width: 420px) {

  .hero-carousel{
    height: 78vh;
    min-height: 500px;
  }

  .hero-title{
    font-size: 1.95rem;
  }

  .hero-subtitle{
    font-size: 0.98rem;
  }
}

/* mobile em modo paisagem */
@media (max-width: 900px) and (orientation: landscape) {

  .hero-carousel{
    height: 90vh;
    min-height: 420px;
  }

  .hero-slide{
    padding: 14px 14px 18px;
  }
}


@media (max-width: 768px){
  .hero-slide{
    background-position: center top; /* preserva topo no mobile */
  }
}
/* =========================
   ABAS DE EQUIPAMENTO (PLANOS)
========================= */
.equip-tabs{
  max-width: 1200px;
  margin: 0 auto;
}

/* esconde radios */
.equip-radio{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* barra de abas */
.equip-tabbar{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 26px;
}

.equip-tab{
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid rgba(0,255,102,.18);
  color: #00ff66;
  background: rgba(0,0,0,.25);
  font-weight: 700;
  transition: .2s ease;
}

.equip-tab:hover{
  box-shadow: 0 0 14px rgba(0,255,102,.18);
}

/* painéis escondidos por padrão */
.equip-panel{
  display: none;
}

/* liga painel correspondente (PC Gamer / PS5 / PS4 / Simulador) */
#tab-pc-gamer:checked ~ .equip-panel[data-equip="pc-gamer"]{ display:block; }
#tab-ps5:checked      ~ .equip-panel[data-equip="ps5"]{ display:block; }
#tab-ps4:checked      ~ .equip-panel[data-equip="ps4"]{ display:block; }
#tab-simulador:checked~ .equip-panel[data-equip="simulador"]{ display:block; }

/* deixa a aba ativa destacada (sem JS) */
#tab-pc-gamer:checked ~ .equip-tabbar label[for="tab-pc-gamer"],
#tab-ps5:checked      ~ .equip-tabbar label[for="tab-ps5"],
#tab-ps4:checked      ~ .equip-tabbar label[for="tab-ps4"],
#tab-simulador:checked~ .equip-tabbar label[for="tab-simulador"]{
  background: #00ff66;
  color: #000;
  border-color: #00ff66;
}

/* Mobile: abas “grandes” e fáceis de clicar */
@media (max-width: 768px){
  .equip-tabbar{
    gap: 8px;
    margin-bottom: 18px;
  }
  .equip-tab{
    width: 46%;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
  }
}
/* =========================
   PLANOS - ABAS (CATEGORIAS) MAIS BONITAS
   Cole no FINAL do style.css
========================= */
.equip-tabs{
  max-width: 1200px;
  margin: 0 auto;
}

/* barra de categorias */
.equip-tabbar{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px auto 34px;          /* ✅ mais espaço */
  padding: 0 10px;
}

.equip-tab{
  cursor: pointer;
  user-select: none;
  padding: 12px 18px;              /* ✅ maior */
  border-radius: 999px;
  border: 2px solid rgba(0,255,102,.18);
  color: #00ff66;
  background: rgba(0,0,0,.35);
  font-weight: 800;
  letter-spacing: .2px;
  transition: .2s ease;
  box-shadow: 0 0 0 rgba(0,255,102,0);
}

.equip-tab:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0,255,102,.12);
  border-color: rgba(0,255,102,.35);
}

/* aba ativa (mantém sua lógica de radio) */
#tab-pc-gamer:checked ~ .equip-tabbar label[for="tab-pc-gamer"],
#tab-ps5:checked      ~ .equip-tabbar label[for="tab-ps5"],
#tab-ps4:checked      ~ .equip-tabbar label[for="tab-ps4"],
#tab-simulador:checked~ .equip-tabbar label[for="tab-simulador"]{
  background: #00ff66;
  color: #000;
  border-color: #00ff66;
  box-shadow: 0 0 22px rgba(0,255,102,.25);
}

/* painel: dá respiro entre categoria e cards */
.equip-panel{
  margin-top: 6px;
  padding-top: 4px;
}

/* =========================
   PLANOS - CARDS COM MAIS ESPAÇO
========================= */
.planos-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 46px;                        /* ✅ MAIS espaço entre cards */
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 10px 0;
}

/* card mais premium */
.plano-card{
  background: linear-gradient(to bottom, #0a0a0a, #070707);
  border: 2px solid rgba(0,255,102,.14);
  border-radius: 26px;
  padding: 44px 30px;               /* ✅ mais “alto” */
  text-align: center;
  position: relative;
  transition: .25s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* hover suave */
.plano-card:hover{
  transform: translateY(-8px);
  border-color: rgba(0,255,102,.45);
  box-shadow: 0 18px 55px rgba(0,255,102,.10), 0 25px 65px rgba(0,0,0,.35);
}

/* destaque sem estourar layout no mobile */
.plano-destaque{
  border-color: rgba(0,255,102,.65);
  box-shadow: 0 0 0 2px rgba(0,255,102,.12), 0 18px 60px rgba(0,255,102,.12);
}

/* badge mais bonito */
.plano-badge{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff66;
  color: #000;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(0,255,102,.25);
}

/* títulos e preço mais legíveis */
.plano-card h3{
  color: #00ff66;
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.plano-preco{
  font-size: 2.35rem;
  font-weight: 900;
  margin: 14px 0;
  color: #fff;
  letter-spacing: .2px;
}

.plano-texto{
  font-size: 0.98rem;
  color: #cfcfcf;
  margin-bottom: 22px;
  line-height: 1.35;
}

.plano-beneficios{
  list-style: none;
  margin: 0 0 26px 0;
  padding: 0;
}

.plano-beneficios li{
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #ddd;
}

/* botão full no card */
.plano-btn{
  width: 100%;
  border-radius: 999px;
}

/* =========================
   MOBILE - CATEGORIAS E CARDS
========================= */
@media (max-width: 768px){
  .equip-tabbar{
    gap: 10px;
    margin-bottom: 22px;
  }

  .equip-tab{
    width: 47%;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
  }

  .planos-cards{
    grid-template-columns: 1fr;
    gap: 22px;                      /* ✅ espaçamento bom no mobile */
    padding: 6px 6px 0;
  }

  .plano-card{
    padding: 34px 22px;
    border-radius: 22px;
  }

  /* destaque não aumenta e não “quebra” */
  .plano-destaque{
    transform: none;
  }
}
/* =========================
   AVISO DE PREÇO (premium + responsivo)
========================= */
.price-note{
  max-width: 1100px;
  margin: 18px auto 34px;
  padding: 14px 16px;
  border-radius: 18px;

  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;

  /* glass + neon */
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(0,255,102,.22);
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,255,102,.10) inset,
    0 0 26px rgba(0,255,102,.08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;
}

/* brilho diagonal sutil */
.price-note::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(0,255,102,.10) 35%,
    rgba(0,255,102,.05) 55%,
    transparent 70%
  );
  transform: rotate(8deg);
  pointer-events:none;
}

/* ícone */
.price-note__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;

  background: rgba(0,255,102,.12);
  border: 1px solid rgba(0,255,102,.25);
  box-shadow: 0 0 18px rgba(0,255,102,.12);
  z-index: 1;
}

/* conteúdo */
.price-note__content{
  text-align: left;
  z-index: 1;
}

.price-note__title{
  color: #00ff66;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
  margin-bottom: 4px;
}

.price-note__text{
  color: rgba(255,255,255,.90);
  font-size: 14px;
  line-height: 1.35;
}

.price-note__text strong{
  color: #fff;
}

.price-note__muted{
  display: inline-block;
  margin-left: 8px;
  color: rgba(255,255,255,.68);
  font-weight: 600;
}

/* tag */
.price-note__tag{
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;

  background: #00ff66;
  color: #000;
  box-shadow: 0 0 22px rgba(0,255,102,.22);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
  .price-note{
    margin: 14px auto 22px;
    padding: 12px 12px;
    border-radius: 16px;

    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
  }

  .price-note__icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
  }

  .price-note__tag{
    grid-column: 1 / -1;     /* vai pra baixo */
    justify-self: start;
    padding: 7px 10px;
    font-size: 11px;
  }

  .price-note__title{
    font-size: 13px;
  }

  .price-note__text{
    font-size: 13px;
  }

  .price-note__muted{
    display: block;          /* quebra linha no mobile */
    margin: 6px 0 0 0;
  }
}

@media (max-width: 420px){
  .price-note{
    border-radius: 14px;
  }
}
