/* =========================
   BASE GLOBAL
========================= */

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   BANNER
========================= */

.banner-time {
  width: 100%;
}

.img-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BANNER FAIXA CATEGORIA
========================= */

.banner-categoria {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 40px;
}

.img-banner-categoria {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   LINHAS DE IDENTIDADE (AZUL DEGRADE)
========================= */

.linha-primaria {
  height: 20px;
  background: linear-gradient(90deg, #003366, #0056d6);
}

.linha-secundaria {
  height: 20px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
}

/* =========================
   TÍTULOS
========================= */

.titulo-secao {
  font-weight: 600;
  color: #003366;
}

/* =========================
   LINKS
========================= */

.link-card {
  display: block;
}

/* =========================
   ITENS EM DESTAQUE
========================= */

.card-jogo-story {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.card-jogo-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 86, 214, 0.25);
}

.img-jogo-story {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   TEXTO INSTITUCIONAL - MESMO ESTILO DOS TÍTULOS DOS PRODUTOS (DEGRADÊ AZUL)
========================= */

.texto-institucional {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 20px;
  line-height: 1.5;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

/* Efeito hover suave no texto */
.texto-institucional:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

/* Ajuste para mobile */
@media (max-width: 576px) {
  .texto-institucional {
    font-size: 13px;
    padding: 12px 16px;
    line-height: 1.4;
  }
}

/* =========================
   PRODUTOS
========================= */

.card-produto {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-produto:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 86, 214, 0.25);
}

.card-produto h6 {
  font-weight: 500;
  font-size: 14px;
  color: #003366;
}

/* ===== IMAGEM PRODUTO (DESKTOP AJUSTADO) ===== */

.img-produto {
  width: 100%;
  max-width: 1088px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 12px auto;
  display: block;
}

/* =========================
   TEXTO BEM AVALIADO
========================= */

.avaliacao {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #003366;
  margin-bottom: 6px;
}

/* =========================
   CTA PRODUTO – DEGRADE AZUL
========================= */

.cta-produto {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  color: #ffffff;
  transition: 0.3s ease;
}

.cta-produto:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  color: #ffffff;
}

/* =========================
   BOTÕES CTA SUPERIORES - MESMO ESTILO DOS CARDS
========================= */

.btn-cta-destaque {
  display: inline-block;
  width: auto;
  padding: 12px 28px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-cta-destaque:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  color: #ffffff;
  transform: scale(1.02);
}

.btn-cta-destaque i {
  margin: 0 6px;
  font-size: 16px;
}

/* =========================
   FOOTER – DEGRADE AZUL
========================= */

.footer-m1 {
  margin-top: 60px;
  background: linear-gradient(135deg, #003366, #0056d6, #00aaff);
  color: #ffffff;
}

.footer-titulo {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-lista li {
  margin-bottom: 8px;
}

.footer-m1 a {
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-m1 a:hover {
  color: #d9f2ff;
}

.footer-redes a {
  font-size: 22px;
  margin-right: 14px;
}

/* =========================
   RESPONSIVO – MOBILE
========================= */

@media (max-width: 576px) {

  body {
    background-color: #f1f3f5;
  }

  .titulo-secao {
    font-size: 18px;
  }

  .banner-categoria {
    height: 140px;
  }

  .card-produto {
    background-color: #ffffff;
    border: 1px solid #cfcfcf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }

  .img-produto {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #ffffff;
    padding: 10px;
    max-height: none;
    display: block;
    margin: 12px 0;
  }

  .cta-produto {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
  }

  /* Ajuste dos botões superiores no mobile */
  .btn-cta-destaque {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  .btn-cta-destaque i {
    font-size: 14px;
    margin: 0 4px;
  }

  /* Ajuste do texto institucional no mobile */
  .texto-institucional {
    font-size: 13px;
    padding: 12px 16px;
    line-height: 1.4;
  }
}

/* ===== LISTA EXPLORAR CATEGORIAS ===== */

.footer-lista a{
  color:#212529;
  font-weight:500;
  transition:all 0.25s ease;
}

/* hover com degradê azul estilo Canva */

.footer-lista a:hover{
  background:linear-gradient(90deg,#0d6efd,#4dabf7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  padding-left:4px;
}

/* =========================
   CARD ANÚNCIO - IMAGEM OCUPA 100% DO CARD
   (borda arredondada, sem margens internas)
========================= */

.card-anuncio {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-anuncio:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 86, 214, 0.25);
}

.link-imagem {
  display: block;
  width: 100%;
}

.link-imagem img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   CTA (BOTÃO) FORA DO CARD
========================= */

.cta-anuncio-container {
  margin-top: 12px;
  text-align: center;
}

.cta-anuncio {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-anuncio:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  color: #ffffff;
  transform: scale(1.02);
}

.cta-anuncio i {
  margin: 0 4px;
  font-size: 14px;
}

/* Ajuste para mobile dos cards de anúncio */
@media (max-width: 576px) {
  .cta-anuncio {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .card-anuncio {
    border-radius: 16px;
  }
}

/* =========================
   TÍTULO DO PRODUTO (H4) - GRADIENTE SEMELHANTE AO CTA
========================= */

.produto-titulo {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: 10px 0 6px 0;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

/* Efeito hover no título - muda o gradiente */
.produto-titulo:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(2px);
}

/* Ajuste para mobile */
@media (max-width: 576px) {
  .produto-titulo {
    font-size: 12px;
    margin: 8px 0 4px 0;
  }
}

/* =========================
   INFORMAÇÃO DO PRODUTO (H4 SECUNDÁRIO) - MESMO DEGRADE AZUL
========================= */

.produto-info {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  margin: 4px 0 8px 0;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

/* Efeito hover no info - muda o gradiente igual ao título */
.produto-info:hover {
  background: linear-gradient(90deg, #003366, #0056d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(2px);
}

/* Ajuste para mobile */
@media (max-width: 576px) {
  .produto-info {
    font-size: 11px;
    margin: 3px 0 6px 0;
  }
}


/* =========================
   PÁGINA SOBRE NÓS
   ========================= */

/* HEADER DA PÁGINA SOBRE */
.sobre-header {
  background: linear-gradient(135deg, #003366, #0056d6);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 50px;
}

.sobre-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.sobre-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* CARDS DE VALORES */
.valores-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.valores-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 86, 214, 0.15);
}

.valores-card i {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: inline-block;
}

.valores-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 12px;
}

.valores-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* SEÇÃO SOBRE */
.sobre-section {
  padding: 40px 0;
}

.sobre-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.sobre-section h2:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0056d6, #00aaff);
  border-radius: 3px;
}

.sobre-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sobre-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.sobre-img:hover img {
  transform: scale(1.02);
}

/* TIMELINE */
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0056d6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 86, 214, 0.2);
}

.timeline-content {
  flex: 1;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* CARD DE EQUIPE */
.equipe-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.equipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 86, 214, 0.15);
}

.equipe-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f2f5;
}

.equipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipe-card:hover .equipe-img img {
  transform: scale(1.05);
}

.equipe-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin: 15px 0 5px;
}

.equipe-card p {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.equipe-social a {
  display: inline-block;
  margin: 0 8px 15px;
  color: #0056d6;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.equipe-social a:hover {
  color: #00aaff;
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-header {
    padding: 40px 20px;
  }
  .sobre-header h1 {
    font-size: 1.8rem;
  }
  .sobre-section h2 {
    font-size: 1.5rem;
  }
  .timeline-item {
    flex-direction: column;
    gap: 10px;
  }
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .valores-card {
    padding: 20px 15px;
  }
}