/*****************************/  
/* INÍCIO DO INDEX.HTML */
/*****************************/  
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--gremio-preto);
    padding-bottom: 50px;
    background: linear-gradient(
        90deg,
        rgb(0, 0, 0),
        rgb(115, 146, 167),
        rgb(0, 0, 0)
    );
}

.titulo1 {
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-style: italic;
    font-weight: bold;
    text-shadow: 3px 3px 50px white;
}

.letra {
    display: inline-block;
    font-weight: bold;
    font-size: 36px;
    animation: pulando 1s infinite alternate;
}

.azul {
    color: blue;
}

.preto {
    color: black;
}

.branco {
    color: white;
}

@keyframes pulando {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

#gifContainer1 {
    position: relative;
    display: inline-block;
}

#gifContainer1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/sitegremio/front-end/arquivos/gif/giphy.gif");
    background-size: cover;
    background-position: center top;
    z-index: -1;
    opacity: 0;
    border-radius: 40%;
    box-shadow: 5px 5px 20px #ffffff48;
    transition: opacity 1s ease-in-out;
}

#gifContainer1.active::before {
    opacity: 1;
}

#gifContainer1 img {
    position: relative;
    z-index: 1;
}

#gifContainer1 h1 {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.nav {
    position: fixed;
    background-color: #222;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}

.nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    transition: all 0.3s ease-in-out;
}

.nav.active {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
    color: #000;
}

.nav.active .container {
    padding: 10px 0;
}

.current:hover {
    font-size: 20px;
    animation: tremer 0.2s infinite;
    transition: font-size 0.3 ease;
    transform: scale(1.2);
}

.current {
    font-weight: bold;
    animation: rgbAnim 3s infinite;
    transition: 0.5s;
}

@keyframes rgbAnim {
    0% {
        color: rgb(38, 0, 255);
    }
    33% {
        color: rgb(0, 0, 0);
    }
    66% {
        color: rgb(255, 255, 255);
    }
    100% {
        color: rgb(17, 0, 255);
    }
}

.nav a:hover {
    font-weight: bold;
    color: rgb(17, 0, 255);
    transition: 0.5s;
}

.titulogremio {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.titulogremio:hover {
    font-weight: bold;
    animation: rgbAnim 5s infinite;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 20px #00a9e0) drop-shadow(0 0 20px #ffffff);
    cursor: pointer;
    transform: scale(1.5);
}

.hero {
    background-image: url("../arquivos/img/arena-do-gremio-por-dentro.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1 {
    font-size: 46px;
    margin: -20px 0 20px;
}

.hero p {
    font-size: 20px;
    letter-spacing: 1px;
}

.content h2,
.content h3 {
    font-size: 150%;
    margin: 20px 0;
}

.content p {
    color: white;
    line-height: 30px;
    letter-spacing: 2.2px;
}

#gremio1 {
    height: 50px;
    padding: 0px 50px 0px 10px;
    border-radius: 50%;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

#gremio1:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #00a9e0) drop-shadow(0 0 20px #ffffff);
}

button {
    font-family: "Franklin Gothic Medium";
    box-shadow: 5px 5px 20px black;
    background: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #525e63;
    transform: scale(1.2);
}

footer {
    font-family: "Franklin Gothic Medium";
    font-style: italic;
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: transparent;
    text-align: center;
    padding: 20px 0;
}

footer a {
    background: linear-gradient(135deg, #00a9e0, #003d73, #1d1d1b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

/*****************************/  
/* FIM DO INDEX.HTML */
/*****************************/  

/*****************************/  
/* INÍCIO DO LENDAS.HTML */
/*****************************/  
:root {
    --gremio-azul: #0099e5;
    --gremio-preto: #000000;
    --gremio-branco: #ffffff;
}

.lendasbody {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--gremio-preto);
    background: linear-gradient(
        135deg,
        var(--gremio-azul),
        var(--gremio-branco),
        var(--gremio-preto)
    );
    background-size: cover;
}

header {
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--gremio-branco);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header img {
    height: 60px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    text-shadow: 1px 1px 2px var(--gremio-azul);
}

.container-lendas {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gremio-branco);
    text-shadow: 1px 1px 2px #000;
}

.card {
    display: flex;
    align-items: center;
    background: var(--gremio-branco);
    border-left: 8px solid var(--gremio-azul);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid var(--gremio-preto);
    object-fit: cover;
}

.info h3 {
    margin: 0;
    font-size: 1.4em;
    color: var(--gremio-preto);
    filter: drop-shadow(0 0 10px #fff);
}

.info p {
    margin: 5px 0 0;
    color: #fff;
    filter: drop-shadow(0 0 10px #000);
}

.back-link-lendas {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    padding: 12px 24px;
    background-color: var(--gremio-preto);
    color: var(--gremio-branco);
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 50px;
}

.back-link-lendas:hover {
    background: #525e63;
    transform: scale(1.2);
}

.back-link-lendas:hover {
    background-color: var(--gremio-azul);
    color: var(--gremio-preto);
}

.footerlendas {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footerlendas p {
    margin: 0;
    font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 600px) {
    .card {
        flex-direction: column;
        text-align: center;
    }

    .card img {
        margin: 0 0 15px;
    }
}

.card-renato {
    background-image: url("/sitegremio/front-end/arquivos/img/renato.jpg");
    background-size: cover;
    background-position: center 30%;
    height: 200px;
    text-shadow: 1px 1px 3px #000;
}

.card-danrlei {
    background-image: url("/sitegremio/front-end/arquivos/img/danrlei.jpg");
    background-size: cover;
    background-position: center 40%;
    height: 200px;
    text-shadow: 1px 1px 3px #000;
}

.card-geromel {
    background-image: url("/sitegremio/front-end/arquivos/img/geromel.jpg");
    background-size: cover;
    background-position: center 30%;
    height: 200px;
    text-shadow: 1px 1px 3px #000;
}
/*****************************/  
/* FIM DO LENDAS.HTML */
/*****************************/  

/*****************************/  
/* INÍCIO DO HISTORIA.HTML */
/*****************************/  

#historiabody {
    font-family: "Open Sans", sans-serif;
    color: #fff;
    padding: 0 20px;
}

.container-historia {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    filter: drop-shadow(0 0 10px #00a9e0) drop-shadow(0 0 10px #ffffff);
}

h1, h2, h3, p {
    margin-bottom: 20px;
}

header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    text-shadow: 1px 1px 2px var(--gremio-azul);
}

.historia {
    padding: 30px;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.historia h2 {
    font-size: 24px;
    color: #00a9e0;
}

.historia p {
    font-size: 18px;
    line-height: 1.6;
}

.back-link-historia {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    margin-top: 30px;
    background-color: var(--gremio-preto);
    color: #00a9e0;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.back-link-historia:hover {
    background-color: var(--gremio-azul);
    color: var(--gremio-preto);
    transform: scale(1.2);
}

.mascote-footer {
    position: fixed;
    bottom: 20px;
    left: -150px;
    width: 100px;
    z-index: 1000;
    animation: cruzarFooter 8s linear forwards;
    filter: drop-shadow(0 0 10px #00a9e0) drop-shadow(0 0 25px #ffffff);
    transition: transform 0.3s ease;
}

.mascote-footer:hover {
    transform: scale(1.2) rotate(8deg);
}

@keyframes cruzarFooter {
    from {
        left: -150px;
    }
    to {
        left: 100vw;
    }
}

/**************************/  
/* FIM DE HISTORIA.HTML */
/**************************/  

/**************************/  
/* INÍCIO DE TITULO.HTML */
/**************************/  

  /* ===== Paleta Grêmio ===== */
  :root {
    --azul-gremio: #009de0;
    --preto-gremio: #000000;
    --branco: #ffffff;
    --cinza-claro: #f9f9f9;
    --cinza-escuro: #333333;
    --dourado: #ffd700;
  }
  
  /* ===== Body geral ===== */
.titulos-body {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8),
      rgba(0, 157, 224, 0.8),
      rgba(0, 0, 0, 0.8)
    );
    color: var(--preto-gremio);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
  }
  
  /* ===== Header ===== */
  .gremio-header {
    text-align: center;
    color: var(--azul-gremio);
    font-size: 3.5rem;
    font-weight: 900;
    padding: 30px;
    background-color: #2e2e2e;
    border-bottom: 5px solid var(--azul-gremio);
    padding-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0, 157, 224, 0.7);
    letter-spacing: 2px;
    
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--gremio-branco);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* ===== Botões de Filtro ===== */
  .gremio-filters {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    background-color: var(--azul-gremio);
    color: var(--branco);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 10px rgba(0, 157, 224, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
  }
  
  .filter-btn:hover {
    background-color: var(--preto-gremio);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
  }
  
  .filter-btn.active {
    background-color: var(--preto-gremio);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  }
  
  /* ===== Linha do tempo ===== */
  .gremio-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
  
  /* ===== Item da timeline ===== */
  .gremio-item {
    background-color: var(--cinza-claro);
    border-left: 10px solid var(--azul-gremio);
    border-radius: 12px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  
  .gremio-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 157, 224, 0.35);
  }
  
  /* ===== Ano ===== */
  .gremio-year {
    font-weight: 900;
    color: var(--azul-gremio);
    font-size: 1.7rem;
    min-width: 70px;
    text-shadow: 0 0 6px rgba(0, 157, 224, 0.8);
    user-select: none;
  }
  
  /* ===== Troféu ===== */
  .gremio-trophy {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 3px var(--azul-gremio));
    user-select: none;
  }
  
  /* ===== Título do evento ===== */
  .gremio-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--preto-gremio);
    user-select: text;
  }
  
  /* ===== Responsividade ===== */
  @media (max-width: 600px) {
    .gremio-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
    }
  
    .gremio-year {
      font-size: 1.5rem;
    }
  
    .gremio-trophy {
      width: 28px;
      height: 28px;
    }
  
    .gremio-title {
      font-size: 1.1rem;
    }
  
    .gremio-desc {
      font-size: 0.9rem;
    }
  }

.back-link-titulos {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    padding: 12px 24px;
    background-color: var(--gremio-preto);
    color: var(--gremio-branco);
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 50px;
}

.back-link-titulos:hover {
    background: #525e63;
    transform: scale(1.2);
}

.back-link-titulos:hover {
    background-color: var(--gremio-azul);
    color: var(--gremio-preto);
}

.footer-titulos {
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        text-align: center;
        padding: 20px;
        margin-top: 40px;
}
    
.footer-titulos p {
        margin: 0;
        font-weight: bold;
        font-size: 1.2em;
}
    

/**************************/  
/* FIM DE TITULO.HTML */
/**************************/  

/*****************************/  
/* COMEÇO DO JOGO DO GRÊMIO */
/****************************/  

body.neonfight-body {
    background: radial-gradient(ellipse at center, #0d0221 0%, #000 100%);
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding-top: 30px;
    margin: 0;
    color: #00ffff;
    padding-top: 90px;
}
#bg-video {
    position: fixed; /* fixa no fundo da página */
    top: 0;
    left: 0;
    width: 100vw; /* largura total da viewport */
    height: 100vh; /* altura total da viewport */
    object-fit: cover; /* cobre toda a área mantendo proporção */
    z-index: -1; /* fica atrás de todo conteúdo */
  }
  

.neonfight-glow {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px;
}

.neonfight-title {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    margin-bottom: 0;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: #000011;
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #00ffff;
    box-shadow: inset 0 0 15px #00ffff44;
}


#neonfight-game-area {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    border: 2px solid #ff00ff;
    margin: 40px auto 0;
    overflow: hidden;
    background: #110022;
    border-radius: 12px;
}

#neonfight-enemy {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: crosshair;
    transition: transform 0.1s;
    user-select: none;
}

#neonfight-enemy:active {
    transform: scale(0.9);
}

#neonfight-score {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px #00ffff;
}

.neonfight-back-btn {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 60px;
    /* espaço para footer */
    color: #00ffff;
    text-decoration: none;
    font-size: 1.1rem;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    border: 2px solid #00ffff;
    padding: 10px 25px;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
    background-color: transparent;
}

.neonfight-back-btn:hover {
    background-color: #00ffff22;
    box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

.neonfight-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    color: #00ffff;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff;
    border-top: 2px solid #00ffff;
    background-color: #000011;
    box-shadow: inset 0 0 15px #00ffff44;
    user-select: none;
    z-index: 1000;
}
.nav .arcadelink.neon-arcade-link {
    transition: 
        color 0.5s,
        text-shadow 0.7s cubic-bezier(.4,2,.6,1),
        filter 0.7s cubic-bezier(.4,2,.6,1);
}

.nav .arcadelink.neon-arcade-link:hover {
    color: #ff0000;
    text-shadow: 0 0 18px #ff0000, 0 0 30px #ff0000;
    font-weight: bold;
    animation: neonArcadeGlow 2.2s infinite alternate;
    transition: transform 0.5s ease, filter 0.5s ease;
    
}

@keyframes neonArcadeGlow {
    0% {
        color: #ff0000;
        text-shadow: 0 0 18px #ff0000, 0 0 30px #ff0000;
        filter: drop-shadow(0 0 0px #ff0000);
    }
    40% {
        color: #00ffff;
        text-shadow: 0 0 22px #00ffff, 0 0 40px #00ffff;
        filter: drop-shadow(0 0 10px #00ffff);
        
    }
    80% {
        color: #ff00ff;
        text-shadow: 0 0 28px #ff00ff, 0 0 60px #ff00ff;
        filter: drop-shadow(0 0 20px #ff00ff);
        
    }
    100% {
        color: #ff00ff;
        text-shadow: 0 0 28px #ff00ff, 0 0 60px #ff00ff;
        filter: drop-shadow(0 0 20px #ff00ff);
        
    }
}

/*****************************/  
  /* FIM DO JOGO DO GRÊMIO */
  /*****************************/  