
/* =============================
   ESTILO DA PÁGINA DE JOGOS
============================= */
/* Lista de jogos horizontal */
.jogos-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card horizontal */
.jogo-card-horizontal {
    display: flex;
    flex-direction: row;
    background: linear-gradient(145deg, #fff, #f7f7f7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.jogo-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Capa do jogo */
.jogo-card-horizontal .jogo-thumb {
    flex: 0 0 180px;
}

.jogo-card-horizontal .jogo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info do jogo */
.jogo-card-horizontal .jogo-info {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jogo-card-horizontal .jogo-info h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #2c1f17;
}

.jogo-card-horizontal .jogo-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Botão jogar */
.jogo-card-horizontal .btn-jogar {
    align-self: flex-start;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    background: #f44336;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.jogo-card-horizontal .btn-jogar:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .jogo-card-horizontal {
        flex-direction: column;
    }
    .jogo-card-horizontal .jogo-thumb {
        width: 100%;
        height: 200px;
    }
    .jogo-card-horizontal .jogo-info {
        padding: 15px 20px;
    }
}

