@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

body {
    font-family: "Titillium Web", sans-serif;
    animation: changeBackgroundColor 20s infinite;
    margin: 0;
    padding: 0;
}


/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

footer {
    padding: 20px;
    padding-top: 0;
}
footer div{
    display: flex;
    color: black;
    background-color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    border: 2px solid black;
    border-top: 0;
    justify-self: center;
    justify-content: center;
    margin: 0 auto; /* center the footer container under the page */
    align-items: center; /* vertically center items inside */
}

footer p {
    margin: 0;
    font-size: 11px;
}

.loguinho {
    width: 9px;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------*/

nav {
    width: 100%;
    border-bottom: 2px solid black;
    background-color: white;
    display: flex;
    min-height: 50px;
    justify-content: center;
}

.navbar {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.navbar img {
    display: flex;
}

.navbar div {
    display: flex;
    gap: 5px;
}

.navbar div a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.navbar div a:hover {
    color: white;
    background-color: black;
}

/* BACKGROUND ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

main{
    padding: 20px;
    padding-bottom: 0;
}

.main {
    border: 2px solid black;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    background-color: white;
    padding: 10px 20px 25px 20px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 50px;
}

/* Define a animação para a mudança de cor do fundo */
@keyframes changeBackgroundColor {
    0% {
        background-color: hsl(0, 100%, 80%);
    }

    14.29% {
        background-color: hsl(60, 100%, 80%);
    }

    28.57% {
        background-color: hsl(300, 100%, 80%);
    }

    42.86% {
        background-color: hsl(360, 100%, 80%);
    }

    57.14% {
        background-color: hsl(120, 100%, 80%);
    }

    71.43% {
        background-color: hsl(180, 100%, 80%);
    }

    85.71% {
        background-color: hsl(240, 100%, 80%);
    }

    100% {
        background-color: hsl(0, 100%, 80%);
        /* Volta ao vermelho */
    }
}


/* ----------------------------------------------------------------------------------------------------------------------------- */
.header {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header img {
    max-width: 400px;
    width: 100%;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Store badges (Google Play / Itch) — force same visible size and make images block-level
   so they don't depend on inline parent sizing. Keeps height proportional. */
.googleplay {
    display: block;
    width: 200px;
    max-width: 200px;
    height: auto;
}

.jogos_container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.svgcomtexto p {
    text-align: center;
    color: #77779e;
    font-size: small;
    margin-top: 2px;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/

.texto{
    text-align: center;
}

.atencao{
    margin: -15px;
    font-size: 2rem;
    line-height: 1;
    padding: 0 10px;
}

.rainbow-text {
    background: linear-gradient(
        to right, 
        hsl(0, 100%, 50%), 
        hsl(60, 100%, 50%), 
        hsl(120, 100%, 50%), 
        hsl(180, 100%, 50%), 
        hsl(240, 100%, 50%), 
        hsl(300, 100%, 50%), 
        hsl(360, 100%, 50%)
    );
 
}

.satura-text{
    background: linear-gradient(
        to right, 
        hsl(0, 0%, 55%), 
        hsl(360, 100%, 50%)
    );
}

.lumi-text{
    background: linear-gradient(
        to left, 
        hsl(0, 0%, 90%), 
        hsl(0, 0%, 0%)
    );
}

.lumi-text, .rainbow-text, .satura-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 600px) {
    .googleplay {
        width: 150px;
        max-width: 150px;
    }
    .jogos_container {
  
    gap: 10px;

}
    }