@keyframes entradaTopo {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

body{
    background-color: rgba(29, 184, 211, 0.284);
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.topo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 30px;
    background-color: rgb(69, 225, 37);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 100px;
    animation: entradaTopo 0.8s ease-out;
}

/*parte do tamanho logo*/

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 90px; 
    width: auto;
    object-fit: contain;
}

.logo-texto {
 font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-shadow: 
        3px 3px 0px #1e90ff,
}

/*parte do menuzin*/

.menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.menu a {
    font-family: 'Luckiest Guy', cursive;
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #34b3e4;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu a:hover {
    background-color: #1e90ff;
    transform: scale(1.05);
}

/*parte das imagens*/

.container-2 {
    display: flex;       
    align-items: flex-start;    
    justify-content: center;
    gap: 40px;              
    padding: 40px 5%;
}

.coluna-conteudo {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
}

.imagem-lateral img {
    width: 100%;             
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    display: block;
}

.imagem-lateral img:hover {
    transform: scale(1.03);
}

.sobre-resort {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 2px solid #fff;
}

.sobre-resort h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #1e90ff;
    margin-bottom: 10px;
}

.sobre-resort p {
    font-family: sans-serif;
    color: #333;
    line-height: 1.4;
}

.imagem-jogo-clicável {
    flex: 1;                
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.imagem-jogo-clicável img {
    width: 320px;          
    height: 320px;         
    object-fit: cover;     
    border-radius: 20px;    
    border: 4px solid #fff; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.imagem-jogo-clicável img:hover {
    transform: scale(1.05);
}

.btn-jogo {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #34b3e4;
    padding: 15px 40px;
    border-radius: 12px;
    border: none;
    border-bottom: 5px solid #2eaac3;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none; 
    display: inline-block;
    width: 320px; 
    text-align: center;
}

.btn-jogo:hover {
    background-color: #1e90ff;
    transform: translateY(-2px);
}

.btn-jogo:active {
    transform: translateY(3px);
    border-bottom: 0;
}
/*estrela*/
.estrela {
    font-size: 55px;
    color: #ffce00;
    text-shadow: 2px 2px 0px #000;
    margin: 0 5px;
}

/*sobre o jogo*/
.sobre-resort {
    flex: 3;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    border: 3px solid #fff;
}

.sobre-resort h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #1e90ff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0px #fff;
}

.sobre-resort p {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
    font-size: 1.1rem;
}

/*responsividade né fi*/

@media (max-width: 768px) {
    .topo {
        flex-direction: column;
        padding: 20px 10px;
        min-height: auto;
        gap: 15px;
    }

    .logo-container {
        flex-direction: column;
        gap: 5px;
    }

    .logo-img {
        height: 70px; 
    }

    .logo-texto {
        font-size: 1.8rem;
        text-align: center;
        letter-spacing: 1px;
    }

    .menu ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .menu a {
        font-size: 1rem;
        padding: 8px 15px;
        width: auto;
    }

    .container-2 {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .imagem-lateral {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .imagem-lateral img {
        width: 90%; 
        margin: 0 auto;
    }

    .imagem-jogo-clicável {
        margin-top: 0;
        width: 100%;
    }

    .imagem-jogo-clicável img {
        width: 250px;
        height: 250px;
        margin-left: 0; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .btn-jogo {
        font-size: 1.2rem;
        padding: 12px 30px;
        margin-left: 0;
        width: 250px; 
        text-align: center;
    }

    .estrela {
        font-size: 30px;
        margin-top: 10px;
    }

    .sobre-resort {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        order: 2;
    }

    .sobre-resort h2 {
        font-size: 1.5rem;
    }

    .sobre-resort p {
        font-size: 1rem;
    }
}