.banner{
    margin-top: 120px;
    width: 100%;
    max-width: 100%;
    background-color: rgb(101, 101, 148);
    border-radius: 25px;
    height: 350px;
    min-height: 350px;
    max-height: 100%;
    cursor: url('cursor2.png') 4 4, pointer;
    display: flex;
    margin: auto;
    justify-content: center;
  align-items: center;
  margin-bottom: 5%;
    flex-direction: column;
    gap: 20px;
}
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
}

.banner-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.banner-logo:hover {
    transform: scale(1.05) rotate(8deg);
    cursor: url('cursor2.png') 4 4, pointer;
    
}

.banner-text {
    text-align: center;
}

.banner h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
    line-height: 1.2;
}

.subtitulo {
    font-size: 1.2em !important;
    margin-top: 15px;
    opacity: 0.9;
    text-align: center;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content {
        gap: 15px;
    }
    
    .banner-logo {
        height: 80px;
    }
    
    .banner h1 {
        font-size: 2em;
    }
    
    .subtitulo {
        font-size: 1em !important;
    }
    
    .banner {
        height: 300px;
        min-height: 300px;
    }
}
.caixaA{
    margin-top: 80px;
    width: min(700px, 90%);
    max-width: 100%;
    height: 75%;
    max-height: 100%;
    background-color: rgb(76, 76, 122);
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 35px;
    gap: 20px;
    padding: 20px 20px 20px;
    margin-bottom: 5%;
    opacity: 0.67;
    transform: scale(0.98);
    transition: all 0.5s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    

}
.caixaA:hover{
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    cursor: url('cursor2.png') 4 4, pointer;
}
.navbar{
    width: 100%;
    background-color:rgb(77, 77, 114) ;
    justify-content: space-around;
    align-items: stretch;
    margin: auto;
    display: flex;
    list-style: none;
    height: 44px;
    z-index: 20000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(77, 77, 114, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.navlink{
    width: 15%;
    color: antiquewhite;
    font-size: 20px;
    list-style: none;
    justify-content: space-around;
}
.navlink a{
   width: 15%;
   color: antiquewhite;
   font-size: 20px;
   list-style: none;
   justify-content: space-around;
   text-align: center;
   text-decoration: none;
}
.navlink a:hover{
    color: aqua;
    transition: 0.3s;
    cursor: url('cursor2.png') 4 4, pointer;
}
nav ul{
    list-style: none;
    justify-content: space-between;
    padding: 15px 10px;
    margin: auto;
    display: flex;
    gap: 20px;
}
nav a{
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
}
nav a:hover{
    color: aliceblue;
    transition: 0.3s;
    cursor: url('cursor2.png') 4 4, pointer;
}
body{
    background-color: rgb(51, 51, 70);
    cursor: url('cursor.png') 4 4, pointer;
}
h1{
    color: rgb(203, 231, 255);
    font-size: 2em;
    font-family: 'Times New Roman', Times, serif;
}
h1:hover{
    color: aliceblue;
    transition: 0.5s;
}
.texto{
    align-self: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    font-size: medium;
}
.subtitulo{
    align-self: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    font-size: 1.2em !important;
    margin-top: 10px;
    opacity: 0.9;
    color: aliceblue;
    
}
.footnote {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: rgb(76, 76, 122);
    color: #fff;
}
a{
    color: antiquewhite;
    transform: scale(0.97);
    text-decoration: none;
    transition: all 0.6s ease;
    cursor: url('cursor2.png') 4 4, pointer;
}
a:hover{
    color: rgb(252, 193, 176);
    transform: scale(1);
    text-decoration: wavy;
}
/* Container da seção */
.sobre-nos {
    padding: 30px 20px;
}

/* Título principal */
.sobre-nos h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(203, 231, 255);
}

/* Texto introdutório e conclusão */
.sobre-nos .intro,
.sobre-nos .conclusao {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(203, 231, 255);
}

/* Container dos cards */
.sobre-nos .valores {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Cada card de valor */
.sobre-nos .valor {
    flex: 1 1 200px;
    background-color: rgba(101, 101, 148, 0.2);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: rgb(203, 231, 255);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hover nos cards */
.sobre-nos .valor:hover {
    transform: scale(1.05);
    background-color: rgba(101, 101, 148, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    cursor: url('cursor2.png') 4 4, pointer;
}

/* Subtítulos dos cards */
.sobre-nos h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
    color: rgb(203, 231, 255);
}

/* Parágrafos dentro dos cards */
.sobre-nos p {
    text-align: center;
    color: rgb(203, 231, 255);
}

/* Responsividade */
 @media (max-width: 768px) {
            .banner-content {
                gap: 15px;
            }
            
            .banner-logo {
                height: 80px;
            }
            
            .banner h1 {
                font-size: 2em;
            }
            
            .subtitulo {
                font-size: 1em !important;
            }
            
            .banner {
                height: 300px;
                min-height: 300px;
            }
            
            .jogos-lista,
            .valores {
                flex-direction: column;
                gap: 15px;
            }
            
            .jogos-container h2,
            .sobre-nos h2 {
                font-size: 1.6em;
            }
            
            .jogo-item h3,
            .sobre-nos h3 {
                font-size: 1.1em;
            }
            
            .jogos-container .intro,
            .sobre-nos .intro,
            .sobre-nos .conclusao {
                font-size: 0.95em;
            }
            .navbar{
                height: 9%;
                min-height: 9%;
            }
        }
html {
            scroll-behavior: smooth;
    }
   .jogos-container {
            padding: 30px 20px;
        }

        .jogos-container h2 {
            font-size: 2em;
            text-align: center;
            margin-bottom: 20px;
            color: rgb(203, 231, 255);
        }

        .jogos-container .intro {
            font-size: 1em;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
            color: rgb(203, 231, 255);
        }

        .jogos-lista {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .jogo-item {
            flex: 1 1 200px;
            background-color: rgba(101, 101, 148, 0.2);
            padding: 20px;
            border-radius: 15px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            color: rgb(203, 231, 255);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            text-align: center;
        }

        .jogo-item:hover {
            transform: scale(1.05);
            background-color: rgba(101, 101, 148, 0.4);
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            cursor: pointer;
        }

        .jogo-item h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
            text-align: center;
            color: rgb(203, 231, 255);
        }

        .jogo-item p {
            text-align: center;
            color: rgb(203, 231, 255);
            margin-bottom: 15px;
        }

        .jogo-link {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(106, 90, 249, 0.3);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .jogo-link:hover {
            background-color: rgba(106, 90, 249, 0.5);
            transform: translateY(-2px);
        }
.contato-container{
    padding: 30px 20px;
}
.contato-container h2{
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(203, 231, 255);
}
.contato-lista{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.contato-item{
    flex: 1 1 200px;
    background-color: rgba(101, 101, 148, 0.2);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: rgb(203, 231, 255);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
}
.contato-item h3{
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
    color: rgb(203, 231, 255);
}
.contato-item p{
    text-align: center;
    color: rgb(203, 231, 255);
    margin-bottom: 15px;
}
.contato-link{
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(106, 90, 249, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.contato-item:hover{
    transform: scale(1.05);
    background-color: rgba(101, 101, 148, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    cursor: pointer;
}
.contato-link:hover{
    background-color: rgba(106, 90, 249, 0.5);
    transform: translateY(-2px);
}
.contato-item h3 i {
    margin-right: 3px;
    color: aliceblue;
}
body {
    cursor: url('cursor.png') 4 4, auto;
}
.banner-logo:hover,
.jogo-item:hover,
.contato-item:hover {
    cursor: url('cursor2.png') 4 4, pointer;
}
[style*="cursor: pointer"],
.pointer,
a,
button {
    cursor: url('cursor2.png') 4 4, pointer !important;
}
.linha {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        
.imagem {
            width: 200px;
            height: 150px;
            border: 2px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
.imagem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
 .imagem:hover img {
            transform: scale(1.05);
        }
        
.legenda {
      text-align: center;
      padding: 5px;
      font-size: 14px;
     color: #666;
        }
.galeria {
     max-width: 1000px;
     margin: 0 auto;
     background: rgb(51, 51, 70);
      padding: 20px;
       border-radius: 10px;
     box-shadow: 0 0 10px rgba(0,0,0,0.1);
}