/*
  Arquivo: index.css
  Descrição: Arquivo de estilo para layout, cores e responsividade do site.
  Classes comentadas por bloco visual.
*/
/* Caixa padrão (todos iguais) */
/* =======================
   PATROCINADORES (COMPLETO)
   ======================= */

/* Linha de logos */
/* =========================
   DIVISOR ENTRE AS SEÇÕES
   ========================= */
.divider-purple{
  border: 0;
  height: 2px;
  margin: 24px 0 16px;
  background: linear-gradient(90deg, #7a2cff, #2fd0f7);
  opacity: .9;
}

/* Espaçamento básico da seção (opcional) */
.patrocinadores{
  margin: 16px 0 0;
}

/* ======================================
   CARROSSEL DE PATROCINADORES (2 por vez)
   ====================================== */
/* Ajuste estes dois valores conforme desejar */
.sponsors-step{
  --gap: 16px;    /* espaço entre os itens */
  --item-h: 96px; /* altura das caixas/logos */
}

.sponsors-step .viewport{
  overflow: hidden;
  width: 100%;
}

.sponsors-step .track{
  display: flex;
  flex-wrap: nowrap;          /* não quebra linha */
  gap: var(--gap);
  transition: transform .55s ease;  /* anima suavemente a troca */
  will-change: transform;
}

/* Cada item ocupa metade do viewport => 2 por tela */
.sponsors-step .logo-box{
  flex: 0 0 calc(50% - var(--gap)/2);
  width: auto !important;                     /* neutraliza larguras antigas */
  height: var(--item-h);
  display: flex;
  align-items: center;
  justify-content: center;

  /* Sem “cara de botão” */
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
  outline: none;
}

/* Imagem padronizada (fica branca se tiver transparência) */
.sponsors-step .logo-box img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Se algum logo usar arquivo com fundo preto, desative o invert só nele
.sponsors-step .logo-box img.logo-hogarox{ filter: none; }
*/

/* Desktop: pode aumentar espaçamentos/tamanho */
@media (min-width: 768px){
  .sponsors-step{
    --gap: 20px;
    --item-h: 110px;
  }
}

/* EXCLUSIVO Hogarox */
.patrocinadores .logo-box img.logo-hogarox{
  filter: none;               /* não aplicar invert */
  background: transparent;    /* não deixa bloco branco */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== CARROSSEL DE PATROCINADORES (ISOLADO) ===== */
.sponsors-carousel{ --gap:12px; }                  /* ajuste o espaçamento aqui */
.sponsors-carousel .viewport{ overflow:hidden; width:100%; }
.sponsors-carousel .track{
  display:flex;
  flex-wrap:nowrap;                                /* não quebrar linha */
  gap: var(--gap);
  transition: transform .5s ease;
  will-change: transform;
}

/* cada item ocupa metade da largura da viewport (2 por vez) */
.sponsors-carousel .logo-box{
  flex: 0 0 calc(50% - var(--gap)/2);
  width:auto !important;                           /* ignora widths antigos */
  height:130px;                                    /* altura unificada */
  display:flex; align-items:center; justify-content:center;
  background:#0a0a0a;                              /* igual ao fundo do site */
  border-radius:8px; padding:10px;
}

/* imagens uniformes, brancas quando houver transparência */
.sponsors-carousel .logo-box img{
  max-width:100%; max-height:100%;
  object-fit:contain; display:block;
  filter: brightness(0) invert(1);
}

/* Hogarox já está com arquivo "logotrans" (transparente). 
   Se usar um com fundo preto, remova o invert só nele: */
.sponsors-carousel .logo-box img.logo-hogarox{
  /* filter:none;  // use isto somente se o arquivo tiver fundo preto */
}

@media (min-width:768px){
  .sponsors-carousel{ --gap:16px; }                /* gap um pouco maior no desktop */
}




/* divisor roxo */
.divider-purple{
  border:0;
  height:2px;
  background: linear-gradient(90deg,#7a2cff,#2fd0f7);
  opacity:.9;
  margin:24px 0 16px;
}

/* ===== Marquee de patrocinadores (2 visíveis) ===== */
.sponsors-marquee{ --gap:25px; --item-h:140px; }
.sponsors-marquee .viewport{  
  overflow: hidden;
  width: 100%;
}
.sponsors-marquee .track{
  display: flex;
  align-items: center;
  gap: var(--gap);
  /* a animação será aplicada via JS com duração calculada */
  animation: sponsors-scroll var(--duration, 20s) linear infinite;
  will-change: transform;
}

/* cada item ocupa 50% da largura do viewport (2 por vez) */
.sponsors-marquee .logo-box{
  flex: 0 0 calc(50% - var(--gap)/2);
  /* tirar “cara de botão”: */
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex; align-items: center; justify-content: center;
  height: var(--item-h);
  text-decoration: none;               /* sem sublinhado */
}

/* imagens uniformes, sem filtro de botão */
.sponsors-marquee .logo-box img{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);     /* brancas quando o arquivo tem transparência */
}

/* Hogarox já é 'logotrans'; se um dia usar arquivo com fundo preto, desative o invert só nele: */
/* .sponsors-marquee .logo-box img.logo-hogarox{ filter:none; } */

@keyframes sponsors-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); } /* percorre a primeira metade (vamos duplicar o conteúdo) */
}

@media (min-width: 768px){
  .sponsors-marquee{ --gap:18px; --item-h:72px; }
}
/* divisor roxo entre seções */
.divider-purple{
  border:0; height:2px; margin:24px 0 16px;
  background: linear-gradient(90deg,#7a2cff,#2fd0f7);
  opacity:.9;
}

/* ===== Carrossel por passos (2 por vez) ===== */
.sponsors-step{ --gap:14px; --item-h:86px; } /* AUMENTE --item-h para logos maiores */

.sponsors-step .viewport{ overflow:hidden; width:100%; }
.sponsors-step .track{
  display:flex; flex-wrap:nowrap; gap:var(--gap);
  transition: transform .55s ease;  /* animação suave, não contínua */
  will-change: transform;
}

/* 2 por tela: cada item ocupa metade do viewport */
.sponsors-step .logo-box{
  flex: 0 0 calc(50% - var(--gap)/2);
  width:auto !important;
  height: var(--item-h);
  display:flex; align-items:center; justify-content:center;
  background: transparent !important; border-radius:0 !important;
  padding:0 !important; box-shadow:none !important; text-decoration:none;
}

.sponsors-step .logo-box img{
  max-width:100%; max-height:100%; object-fit:contain; display:block;
  filter: brightness(0) invert(1); /* brancos se o arquivo tiver transparência */
}

/* Hogarox já é 'logotrans' (transparente). Se um dia usar arquivo com fundo preto:
.sponsors-step .logo-box img.logo-hogarox{ filter:none; }
*/

@media (min-width:768px){
  .sponsors-step{ --gap:18px; --item-h:96px; } /* logos maiores no desktop */
}



/* divisor roxo entre seções */
.divider-purple{
  border:0; height:2px; margin:24px 0 16px;
  background: linear-gradient(90deg,#7a2cff,#2fd0f7);
  opacity:.9;
}

/* ===== Carrossel por passos (2 por vez) ===== */
.sponsors-step{ --gap:14px; --item-h:86px; } /* AUMENTE --item-h para logos maiores */

.sponsors-step .viewport{ overflow:hidden; width:100%; }
.sponsors-step .track{
  display:flex; flex-wrap:nowrap; gap:var(--gap);
  transition: transform .55s ease;  /* animação suave, não contínua */
  will-change: transform;
}

/* 2 por tela: cada item ocupa metade do viewport */
.sponsors-step .logo-box{
  flex: 0 0 calc(50% - var(--gap)/2);
  width:auto !important;
  height: var(--item-h);
  display:flex; align-items:center; justify-content:center;
  background: transparent !important; border-radius:0 !important;
  padding:0 !important; box-shadow:none !important; text-decoration:none;
}

.sponsors-step .logo-box img{
  max-width:100%; max-height:100%; object-fit:contain; display:block;
  filter: brightness(0) invert(1); /* brancos se o arquivo tiver transparência */
}

/* Hogarox já é 'logotrans' (transparente). Se um dia usar arquivo com fundo preto:
.sponsors-step .logo-box img.logo-hogarox{ filter:none; }
*/

@media (min-width:768px){
  .sponsors-step{ --gap:18px; --item-h:96px; } /* logos maiores no desktop */
}




/* Desktop: pode aumentar o gap um pouco (opcional) */
@media (min-width: 768px)
/* === POP-UP LOGIN/LOGOUT VH TEAM === */
.vh-popup-login {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,16,30,0.90);
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
}
.vh-popup-content {
  background: #181f2d;
  border-radius: 24px;
  box-shadow: 0 12px 48px #0008;
  padding: 36px 28px 26px;
  text-align: center;
  max-width: 98vw;
  border: 2.5px solid #2fd0f7;
  animation: vh-popin .32s cubic-bezier(.35,.8,.38,1.08);
  width: 31vh;
}
.vh-popup-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  width: 31vh;
}
.vh-blue {
  color: #2fd0f7;
  filter: drop-shadow(0 0 4px #2fd0f7aa);
}
.vh-popup-content p {
  color: #b4d4ef;
  font-size: 1.14rem;
  margin-bottom: 24px;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.overlay-video {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  font-size: 4.5vw;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 10px black;
  pointer-events: none;
}


.overlay-video h1 {
  font-size: 3.2vw;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1.5px;

  text-shadow:
    0 0 4px rgba(0, 255, 255, 0.2),
    0 0 8px rgba(0, 255, 255, 0.3),
    1px 1px 2px rgba(0, 0, 0, 0.6);

  animation: brilhoSuave 4s ease-in-out infinite;
}

@keyframes brilhoSuave {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(0, 255, 255, 0.2),
      0 0 8px rgba(0, 255, 255, 0.3),
      1px 1px 2px rgba(0, 0, 0, 0.6);
  }
  50% {
    text-shadow:
      0 0 6px rgba(119, 0, 255, 0.4),
      0 0 12px rgba(119, 0, 255, 0.3),
      1px 1px 2px rgba(0, 0, 0, 0.6);
  }
}


.vh-popup-btn {
  padding: 10px 38px;
  background: linear-gradient(90deg, #2fd0f7 0%, #6b6eff 100%);
  border: none;
  border-radius: 13px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.09rem;
  box-shadow: 0 4px 16px #2fd0f766;
  transition: filter .14s, box-shadow .14s;
}
.vh-popup-btn:hover {
  filter: brightness(1.12) drop-shadow(0 0 8px #2fd0f7aa);
  box-shadow: 0 2px 24px #2fd0f799;
}
@keyframes vh-popin {
  0% { opacity: 0; transform: scale(.94);}
  100% { opacity: 1; transform: scale(1);}
}

/* Responsivo */
@media (max-width: 480px) {
  .vh-popup-content {
    padding: 20px 8vw 18px 8vw;
    font-size: 1rem;
  }
  .vh-popup-content h2 {
    font-size: 1.4rem;
  }
  .vh-popup-btn {
    padding: 8px 18vw;
    font-size: 1rem;
  }
}



@keyframes pulse {
  0% {
    transform: scale(1);
    
  }
  50% {
    transform: scale(1.05);
   
  }
  100% {
    transform: scale(1);
    
  }
  }  

.tudao {

 

font-size: 2.8em;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, rgb(171, 171, 240), rgb(130, 138, 241));
    background-color: #a53f3f;
  


}

@media screen {max-width: 768px }

  .valhalla-section {
    
    padding: 60px 30px;
    text-align: center;
    color: white;
}
 


.valhalla-section {
    
    padding: 60px 30px;
    
    color: white;
}

.valhalla-hero {
    max-width: 1000px;
    margin: 0 auto;
}

@media screen {max-width: 768px 
  .logo-hero {
    width: 220px;
    max-width: 90%;
    animation: pulseLogo 1s infinite ease-in-out;
    opacity: 0.3;
    text-align: left;
    
}
 }


.logo-hero {
  width: 220px;
    max-width: 90%;
    animation: pulseLogo 2s infinite ease-in-out;
    opacity: 0.5 !important;
    position: static;
    text-align: left;
}

.hero-text {
   font-size: 16px;
    margin-top: 30px;
    line-height: 1.8;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 26px #8129d5;
}



@media (max-width: 768px) {

     p.hero-text{

      animation: pulse 2s infinite;
      color: white;
       max-width: 600px;
margin-top: -31vh;
} 
 }


/* Responsivo para celular */
@media (max-width: 768px) {
    .valhalla-section {
        padding: 40px 20px;
    }

    .logo-hero {
       width: 220px;
       animation:  pulse 2s infinite;
       text-align: ;
    }
    }

    .hero-text {
       font-size: 16px;
        padding: 13px;
        line-height: 1.6;
        text-align: center;
        margin-top: -34vh;
    }


@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.follow
{
  width: 100%;
  background: #000; /* ou qualquer cor de fundo desejada */
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.follow p {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  padding-left: 100%;
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
   

.hero {
    background: url('images/jogador-esports.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}
.hero img {
    width: 200px;
    height: auto;
   
    filter: drop-shadow(0 0 20px #00f) drop-shadow(0 0 40px #a0f);
}
.hero h1 {
    font-size: 2.8em;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #00f, #a0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2em;
    max-width: 600px;
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 12px;
}


.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.hero-text {
    color: white;
    max-width: 600px;
     pulse 2s infinite;
}

.hero-text h1 {
    font-size: 2.5em;
    color: #892be2;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 40px;
    }

    .hero-logo img {
        max-width: 250px;
        margin-bottom: 0;
    }
}



.hero {
    padding: 60px 20px;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-logo img {
    max-width: 280px;
}

.hero-text {
  animation:  pulse 2s infinite;
    color: white;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5em;
    color: #892be2;
    margin-bottom: 20px;
}

.cta {
    margin-top: 40px;
}

.hero-button {
    background: linear-gradient(to right, #00c3ff, #892be2);
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: linear-gradient(to right, #005e8f, #5e1f9b);
}

.patrocinadores {
    margin: 0px auto;
    text-align: center;
}

.patrocinadores hr {
    border: 1px solid #892be2;
    margin-bottom: 30px;
}


.jogos {
    text-align: center;
    padding-bottom: 60px;
}

.jogos h2 {
    color: white;
    margin-bottom: 30px;
}

.jogos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.jogos-grid img {
   
    transition: transform 0.2s ease;
}

.jogos-grid img:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .hero-text {
       
        position: absolute;
        margin-top: 1vh;
    }
}
/* ===== Utilitários por item (ajuste individual) ===== */
/* Defaults (podem ser sobrescritos por item via custom properties) */
/* === Overrides para ajuste individual dos logos (força aplicação) === */
.sponsors-step .track .logo-box {
  --img-scale: 1;
  --img-maxh: 100%;
  --img-pad: 0;
  --img-shift-x: 0;
  --img-shift-y: 0;
  --img-invert: 1;
}

.sponsors-step .track .logo-box img{
  max-height: var(--img-maxh, 100%) !important;
  padding: var(--img-pad, 0) !important;
  transform: translate(var(--img-shift-x, 0), var(--img-shift-y, 0)) scale(var(--img-scale, 1)) !important;
  transform-origin: center !important;
  filter: brightness(0) invert(var(--img-invert, 1)) !important;
  /* garante que nada “segure” a imagem */
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.sponsors-step .viewport{ overflow: visible; } /* deixa a escala aparecer se passar da caixa */


.img


/* HERO SECTION */
.hero-text h1 {
  font-size: 2.2em;
}

.hero-text p {
  font-size: 0.95em;
  line-height: 1.6em;
}

/* LOGOS DE PATROCINADORES */
.patrocinadores .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}





/* LOGOS DOS JOGOS */
.jogos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}



.logo-trueking {
    height: 207px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin: -55px -7px;

}

.logo-fidelidade {
    height: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin: -26px 20px;
}




.patrocinadores .logos {
     display: flex;
    justify-content: center;
    gap: 179px;
    margin-top: 20px;
    flex-wrap: wrap;
}






.jogos {
  text-align: center;
  margin-top: 40px;
}

.jogos h2 {
  color: white;
  font-size: 1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jogos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.jogo-box {
  background: #111;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jogo-box img {
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.jogo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(137, 43, 226, 0.3);
}


.jogo-box {
  background: #111;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jogo-box img {
  max-height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}



/* Corrigir jogos - remover filtro e permitir cores normais das logos */
.jogo-box img {
  max-height: 55px;
  object-fit: contain;
  filter: none;
}



.lineups {
  text-align: center;
 
}

.lineups h2 {
    text-align: center;
    font-size: 22px;
    color: white;
    margin-bottom: 50px;
    margin-left: 2vh;
}

@media (max-width: 768px) {
    .lineups h2 {
        text-align: center;
    }
}

.lineups-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.lineup-card {
  width: 180px;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(137, 43, 226, 0.3);
}

.lineup-card img {
  max-width: 45px;
  margin: 0 auto 10px;
  
}

.lineup-card span {
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
}



.lineup-card.text-only {
  background: #111;
  width: 180px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineup-card.text-only span {
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.lineup-card.text-only:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(137, 43, 226, 0.25);
}



.lineups-grid {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    gap: 160px;
}

 

.lineup-card img {
  max-width: 45px;
 
}

.lineup-card span {
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
}

.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-content {
  position: relative;
  width: 100%;
  height: auto;
}

.video-bg {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px black;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text .logo {
  width: 80px;
  margin-bottom: 8px;
}

.logo-text h1 {
  font-size: 24px;
  font-weight: bold;
}


/* Estilo para seção de notícias estilo NRG */
.noticias {
  padding: 40px 20px;
  background-color: #0a0a0a;
  color: white;
  text-align: center;
}

.titulo-noticias {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.grid-noticias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-noticia {
  background-color: #121212;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.card-noticia:hover {
  transform: scale(1.03);
}

.card-noticia img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-noticia h3 {
  font-size: 1.4em;
  margin: 15px;
}

.card-noticia p {
  font-size: 0.95em;
  margin: 0 15px 15px;
  color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
  .titulo-noticias {
    font-size: 2em;
  }
}


/* ===== ESTILO EXCLUSIVO PARA EVENTOS (VISUAL NRG) ===== */
.noticias {
  padding: 77px 2px;
    background-color: #0a0a0a;
    color: white;
    text-align: center;
}

.titulo-noticias {
  margin-top: -3vh;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.grid-noticias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-noticia {
  background-color: #121212;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.card-noticia:hover {
  transform: scale(1.03);
}

.card-noticia img {
 width: 100%;
    height: 310px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}
a {
  text-decoration: none;
  color: inherit; /* opcional: herda a cor do texto do elemento pai */
}

.card-noticia h3 {
font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 3px 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.card-noticia p {
  font-size: 0.95em;
    margin: 10px 3px 7px;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}

/* Estilo para a seção NEWS com scroll horizontal */
.grid-noticias {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.card-noticia {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 250px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .grid-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    overflow: visible;
  }
}

/* MOBILE: scroll horizontal */
.grid-noticias {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding: 16px;
  margin-left: 3vh;
  -webkit-overflow-scrolling: touch;
}
 
.noticias-scroll {
  overflow-x: auto; /* permite o scroll horizontal se necessário */
}

  .card-noticia {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
 padding: 10px;
    margin-left: 10px;
  }

  .card-noticia img {
    height: 314px;
  }


.card-noticia {
     flex: 0 0 auto;
  scroll-snap-align: start;
  width: 266px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;

  padding: 15px;
}

/* DESKTOP: grade organizada */
@media (min-width: 768px) {
  .grid-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    overflow: visible;
  }

  .card-noticia {
    width: 88%;
  }
}

.patrocinadores .logos {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
  align-content: center;
  flex-direction: row;

}

@media (min-width: 768px) {
  .patrocinadores .logos {
    justify-content: space-around;
    gap: 180px;
  }
}

/* MOBILE (padrão): layout horizontal, sem quebrar linha */
.lineups-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  flex-direction: row;
  text-align: center;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
 
}

/* Estilo dos cards no mobile */
.lineup-card {
  width: 103px;
  height: 153px;
  background-size: cover;
  background-position: center;
  border-radius: 35px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  transition: transform 1.3s ease, box-shadow 0.3s ease;
  align-content: space-around;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* NO DESKTOP: mantém layout atual do projeto original */
@media (min-width: 768px) {
  .lineups-grid {
    flex-wrap: wrap;
    overflow: visible;
  }
}

@media (min-width: 768px) {
  .lineup-card {
    width: 220px;
    height: 291px;
  }
}

/* DESKTOP: Alinhar logo ao lado esquerdo do texto */
@media (min-width: 768px) {
  .sobre-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .sobre-texto {
    flex: 1;
  }

  .sobre-logo {
    flex: 0 0 auto;
    max-width: 200px;
  }
}


/* Correção de centralização da logo e texto na versão desktop */
@media (min-width: 768px) {
  .valhalla-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: left;
  }

  .valhalla-hero .logo-hero {
    max-width: 200px;
    height: auto;
    display: block;
  }

  .valhalla-hero .hero-text {
    max-width: 600px;
    color: white;
    
  }
}
