
.papa{
    display: flex;
    flex-direction: column; 
    gap: 20px; 
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
     margin-bottom: 7rem;
   
}

.informacion{
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    padding: 15px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.informacion:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.informacion img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}


.informacion h3{
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
}


.informacion p{
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}


.genre, .platform{
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    font-weight: bold;
}

.platform{
    background: #e74c3c;
}


@media (min-width: 768px){
    .papa{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .informacion {
        padding: 20px;
    }
    
    .informacion h3 {
        font-size: 20px;
    }
}